aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-stop
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/nslu2-binary-only/unslung-rootfs/rc.optware-stop')
-rwxr-xr-xrecipes/nslu2-binary-only/unslung-rootfs/rc.optware-stop27
1 files changed, 0 insertions, 27 deletions
diff --git a/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-stop b/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-stop
deleted file mode 100755
index 3668aaf351..0000000000
--- a/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-stop
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/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