aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDonnie Barnes <djb@redhat.com>1997-10-28 20:47:30 +0000
committerDonnie Barnes <djb@redhat.com>1997-10-28 20:47:30 +0000
commit882b0864c515cef75fcd17ac4ce167ea59688e73 (patch)
tree8a9eef3bfc405dc2ce9fbb632388ee3439a753ad
parentb76dce6c04d1dca95ea07a6800f77fc9ac1928a6 (diff)
downloadinitscripts-882b0864c515cef75fcd17ac4ce167ea59688e73.tar
initscripts-882b0864c515cef75fcd17ac4ce167ea59688e73.tar.gz
initscripts-882b0864c515cef75fcd17ac4ce167ea59688e73.tar.bz2
initscripts-882b0864c515cef75fcd17ac4ce167ea59688e73.tar.xz
initscripts-882b0864c515cef75fcd17ac4ce167ea59688e73.zip
removed the skeleton initscript (basically useless)
-rw-r--r--initscripts.spec4
-rwxr-xr-xrc.d/init.d/skeleton27
2 files changed, 4 insertions, 27 deletions
diff --git a/initscripts.spec b/initscripts.spec
index a677da27..2f0b5479 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -17,6 +17,10 @@ that activate and deactivate most network interfaces.
%changelog
+* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
+
+- removed the skeleton init script
+
* Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
- touch /var/lock/subsys/kerneld if it's running, and after mounting /var
diff --git a/rc.d/init.d/skeleton b/rc.d/init.d/skeleton
deleted file mode 100755
index a0d2758b..00000000
--- a/rc.d/init.d/skeleton
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-#
-# skeleton Example file to build /etc/init.d scripts.
-#
-# Version: @(#) /etc/init.d/skeleton 1.01 26-Oct-1993
-#
-# Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
-#
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-# See how we were called.
-case "$1" in
- start)
- touch /var/lock/subsys/skeleton
- ;;
- stop)
- rm -f /var/lock/subsys/skeleton
- ;;
- *)
- echo "Usage: skeleton {start|stop}"
- exit 1
-esac
-
-exit 0
-