default.h (258B) download
1#pragma once
2
3#include "config.h"
4
5/**
6 * where the config lives
7 */
8#ifndef DEFAULT_CONFIG
9# define DEFAULT_CONFIG "/etc/dualinit.conf"
10#endif
11
12/**
13 * default init-path if nothing is defined
14 */
15#ifndef DEFAULT_INIT
16# define DEFAULT_INIT "/sbin/init"
17#endif