aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-05-22 13:02:55 -0400
committerAaron Griffin <aaronmgriffin@gmail.com>2008-05-22 13:02:55 -0400
commit63db98c2a8e256f9219c5c6501b40846040bf089 (patch)
treea557ce1a362acc73dc089685c423d9a0885fe635 /functions
parentde031161e02772aaeaefed1398f8ad59621bd8bc (diff)
downloadinitscripts-63db98c2a8e256f9219c5c6501b40846040bf089.tar.xz
Remove source_functions in favor of always sourcing the dir
This is an obvious oversight on my part - this change allows the overridden functions to work in daemon scripts and anything else that uses /etc/rc.d/functions by itself. Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'functions')
-rw-r--r--functions13
1 files changed, 6 insertions, 7 deletions
diff --git a/functions b/functions
index 4a4b05a..63999a1 100644
--- a/functions
+++ b/functions
@@ -151,13 +151,12 @@ ck_depends() {
done
}
-source_functions() {
- if [ -d /etc/rc.d/functions.d/ ]; then
- for f in $(/bin/ls /etc/rc.d/functions.d/); do
- . /etc/rc.d/functions.d/$f
- done
- fi
-}
+#Source additional functions at the end to allow overrides
+if [ -d /etc/rc.d/functions.d/ ]; then
+ for f in $(/bin/ls /etc/rc.d/functions.d/); do
+ . /etc/rc.d/functions.d/$f
+ done
+fi
# End of file
# vim: set ts=2 noet: