diff options
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/skeleton | 27 |
1 files changed, 0 insertions, 27 deletions
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 - |