summaryrefslogtreecommitdiffstats
path: root/fs/skeleton/etc/init.d/rcK
diff options
context:
space:
mode:
Diffstat (limited to 'fs/skeleton/etc/init.d/rcK')
-rwxr-xr-xfs/skeleton/etc/init.d/rcK27
1 files changed, 0 insertions, 27 deletions
diff --git a/fs/skeleton/etc/init.d/rcK b/fs/skeleton/etc/init.d/rcK
deleted file mode 100755
index 59e9c54ff..000000000
--- a/fs/skeleton/etc/init.d/rcK
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-
-# Stop all init scripts in /etc/init.d
-# executing them in reversed numerical order.
-#
-for i in $(ls -r /etc/init.d/S??*) ;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
-