diff options
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2013-02-11 22:13:28 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-02-16 19:56:47 -0600 |
commit | cd4becf6cd9611defda298f984efa01c441723d3 (patch) | |
tree | 7c478112cbc3d80ef806bb4f1ed65990b31840bf /sh/init.sh.Linux.in | |
parent | 746bf5f78376e2e7b3e8bc843dfa1e4a3fa6a8e4 (diff) |
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>
Diffstat (limited to 'sh/init.sh.Linux.in')
-rw-r--r-- | sh/init.sh.Linux.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/init.sh.Linux.in b/sh/init.sh.Linux.in index ed81a9ea..09bcbdb6 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 |