diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2015-12-09 12:38:10 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2015-12-09 12:38:10 -0600 |
commit | cc9c23c8484ea7d07b1f8e54bcab46cc31ec727d (patch) | |
tree | 1891d9d7fa1ae194b4a9e597eaafc59386e15e2d /sh/init.sh.Linux.in | |
parent | 935252b1152b4086ccbe76ace21e677d7ac8a357 (diff) |
Complete support for rc.conf.d
- gendepends.sh needs to read this directory to allow dependencies to be
overridden
- init.sh for Linux and Bsd need to read it to allow config settings
they use to be overridden.
Diffstat (limited to 'sh/init.sh.Linux.in')
-rw-r--r-- | sh/init.sh.Linux.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sh/init.sh.Linux.in b/sh/init.sh.Linux.in index a8ee69ea..7d36e7aa 100644 --- a/sh/init.sh.Linux.in +++ b/sh/init.sh.Linux.in @@ -5,6 +5,11 @@ . "$RC_LIBEXECDIR"/sh/functions.sh [ -r "@SYSCONFDIR@/rc.conf" ] && . "@SYSCONFDIR@/rc.conf" +if [ -d "@SYSCONFDIR@/rc.conf.d" ]; then + for _f in "@SYSCONFDIR@"/rc.conf.d/*.conf; do + [ -e "$_f" ] && . "$_f" + done +fi # By default VServer already has /proc mounted, but OpenVZ does not! # However, some of our users have an old proc image in /proc |