aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
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: