summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2013-02-11 22:13:28 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2013-02-16 19:56:47 -0600
commitcd4becf6cd9611defda298f984efa01c441723d3 (patch)
tree7c478112cbc3d80ef806bb4f1ed65990b31840bf
parent746bf5f78376e2e7b3e8bc843dfa1e4a3fa6a8e4 (diff)
downloadopenrc-cd4becf6cd9611defda298f984efa01c441723d3.tar.gz
openrc-cd4becf6cd9611defda298f984efa01c441723d3.tar.bz2
openrc-cd4becf6cd9611defda298f984efa01c441723d3.tar.xz
make init.sh and init-early.sh honor SYSCONFDIR
Fixes hardcoded paths that break when built with SYSCONFDIR set to anything other than /etc/ Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
-rw-r--r--sh/init-early.sh.Linux.in2
-rw-r--r--sh/init.sh.BSD.in2
-rw-r--r--sh/init.sh.Linux.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/sh/init-early.sh.Linux.in b/sh/init-early.sh.Linux.in
index f9d2388..ba1da98 100644
--- a/sh/init-early.sh.Linux.in
+++ b/sh/init-early.sh.Linux.in
@@ -7,7 +7,7 @@
service_present()
{
- local p="/etc/runlevels/$1/$2"
+ local p="@SYSCONFDIR@/runlevels/$1/$2"
# fail if the file doesn't exist
[ ! -e "$p" ] && return 1
# succeed if $RC_SYS empty, can't check further, assume script will run
diff --git a/sh/init.sh.BSD.in b/sh/init.sh.BSD.in
index 25b46a4..0bd3e9b 100644
--- a/sh/init.sh.BSD.in
+++ b/sh/init.sh.BSD.in
@@ -22,7 +22,7 @@ mount_svcdir()
}
. "$RC_LIBEXECDIR"/sh/functions.sh
-[ -r /etc/rc.conf ] && . /etc/rc.conf
+[ -r "@SYSCONFDIR@/rc.conf" ] && . "@SYSCONFDIR@/rc.conf"
# Disable devd until we need it
if [ -z "$RC_SYS" -a "$RC_UNAME" = "FreeBSD" ]; then
diff --git a/sh/init.sh.Linux.in b/sh/init.sh.Linux.in
index ed81a9e..09bcbdb 100644
--- a/sh/init.sh.Linux.in
+++ b/sh/init.sh.Linux.in
@@ -4,7 +4,7 @@
# Released under the 2-clause BSD license.
. "$RC_LIBEXECDIR"/sh/functions.sh
-[ -r /etc/rc.conf ] && . /etc/rc.conf
+[ -r "@SYSCONFDIR@/rc.conf" ] && . "@SYSCONFDIR@/rc.conf"
# By default VServer already has /proc mounted, but OpenVZ does not!
# However, some of our users have an old proc image in /proc