From cc9c23c8484ea7d07b1f8e54bcab46cc31ec727d Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 9 Dec 2015 12:38:10 -0600 Subject: 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. --- sh/init.sh.Linux.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sh/init.sh.Linux.in') 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 -- cgit v1.2.3