add cname section
[openwrt.git] / package / base-files / files / etc / functions.sh
index c5df499..e4b3bad 100755 (executable)
@@ -292,4 +292,29 @@ service_kill() {
        done
 }
 
+
+pi_include() {
+       if [ -f "/tmp/overlay/$1" ]; then
+               . "/tmp/overlay/$1"
+       elif [ -f "$1" ]; then
+               . "$1"
+       elif [ -d "/tmp/overlay/$1" ]; then
+               if [ -n "$(ls /tmp/overlay/$1/*.sh 2>/dev/null)" ]; then
+                       for src_script in /tmp/overlay/$1/*.sh; do
+                               . "$src_script"
+                       done
+               fi
+       elif [ -d "$1" ]; then
+               if [ -n "$(ls $1/*.sh 2>/dev/null)" ]; then
+                       for src_script in $1/*.sh; do
+                               . "$src_script"
+                       done
+               fi
+       else
+               echo "WARNING: $1 not found"
+               return 1
+       fi
+       return 0
+}
+
 [ -z "$IPKG_INSTROOT" -a -f /lib/config/uci.sh ] && . /lib/config/uci.sh
This page took 0.028743 seconds and 4 git commands to generate.