diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-06-17 11:05:01 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-06-17 11:05:01 +0000 |
commit | b7f31dafc46e772d98405e93bc21c271d8087b7e (patch) | |
tree | 15a3b60678ae9845289d9fbd19f90107ece1c11a | |
parent | bd5715f4d4127c73b6dbd3ad329b7780a6068876 (diff) | |
download | s6-linux-init-b7f31dafc46e772d98405e93bc21c271d8087b7e.tar.xz |
Change default robase to /etc/s6-linux-init
-rw-r--r-- | doc/s6-linux-init-maker.html | 2 | ||||
-rw-r--r-- | src/init/s6-linux-init-maker.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/s6-linux-init-maker.html b/doc/s6-linux-init-maker.html index 3c27a2f..cdf617e 100644 --- a/doc/s6-linux-init-maker.html +++ b/doc/s6-linux-init-maker.html @@ -194,7 +194,7 @@ will read its read-only data from <em>basedir</em>. After running s6-linux-init-maker, the administrator should make sure to copy the created directory <em>dir</em> to <em>basedir</em>. <em>basedir</em> must be absolute. Default is -<strong><tt>/etc/s6</tt></strong>. </li> <p /> +<strong><tt>/etc/s6-linux-init</tt></strong>. </li> <p /> <li> <tt>-l</tt> <em>tmpfsdir</em> : at boot time, a tmpfs will be mounted on <em>tmpfsdir</em>. The directory should already exist in diff --git a/src/init/s6-linux-init-maker.c b/src/init/s6-linux-init-maker.c index a965cc0..b897115 100644 --- a/src/init/s6-linux-init-maker.c +++ b/src/init/s6-linux-init-maker.c @@ -40,7 +40,7 @@ S6_PORTABLE_UTILS_EXTBINPREFIX "s6-echo -- " \ #define BANNER2 "s6-init: stage 2" static char const *slashrun = "/run" ; -static char const *robase = "/etc/s6" ; +static char const *robase = "/etc/s6-linux-init" ; static char const *init_script = "/etc/rc.init" ; static char const *shutdown_script = "/etc/rc.shutdown" ; static char const *bindir = "/bin" ; |