aboutsummaryrefslogtreecommitdiffstats
path: root/packages/nslu2-binary-only/unslung-rootfs/rc.optware-stop
diff options
context:
space:
mode:
Diffstat (limited to 'packages/nslu2-binary-only/unslung-rootfs/rc.optware-stop')
-rwxr-xr-xpackages/nslu2-binary-only/unslung-rootfs/rc.optware-stop27
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/nslu2-binary-only/unslung-rootfs/rc.optware-stop b/packages/nslu2-binary-only/unslung-rootfs/rc.optware-stop
new file mode 100755
index 0000000000..3668aaf351
--- /dev/null
+++ b/packages/nslu2-binary-only/unslung-rootfs/rc.optware-stop
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+if ( [ -f /unslung/rc.optware-stop ] && . /unslung/rc.optware-stop ) ; then return 0 ; fi
+
+# Stop all init scripts in /opt/etc/init.d
+# executing them in numerical order.
+#
+for i in /opt/etc/init.d/K??* ;do
+
+ # Ignore dangling symlinks (if any).
+ [ ! -f "$i" ] && continue
+
+ case "$i" in
+ *.sh)
+ # Source shell script for speed.
+ (
+ trap - INT QUIT TSTP
+ set stop
+ . $i
+ )
+ ;;
+ *)
+ # No sh extension, so fork subprocess.
+ $i stop
+ ;;
+ esac
+done