aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rw-r--r--functions8
1 files changed, 8 insertions, 0 deletions
diff --git a/functions b/functions
index 8b5ecf1..1cefa0b 100644
--- a/functions
+++ b/functions
@@ -142,5 +142,13 @@ ck_daemon() {
return 0
}
+source_functions() {
+ if [ -d /etc/rc.d/functions.d/ ]; then
+ for f in /etc/rc.d/functions.d/*; do
+ . $f
+ done
+ fi
+}
+
# End of file
# vim: set ts=2 noet: