From 23bfcbd74b4a02d302927961dc183066937e17e4 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 6 Aug 2012 15:19:38 -0400 Subject: Drop testd test sysv script. --- src/testdinit | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100755 src/testdinit (limited to 'src/testdinit') diff --git a/src/testdinit b/src/testdinit deleted file mode 100755 index a6500991..00000000 --- a/src/testdinit +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# lpd This shell script takes care of starting and stopping -# lpd (printer daemon). -# - -# Source function library. -. /etc/init.d/functions - -# See how we were called. -case "$1" in - start) - # Start daemons. - echo -n $"Starting testd: " - testd & - echo - touch /var/lock/subsys/testd - ;; - stop) - # Stop daemons. - echo -n $"Shutting down testd: " - killproc testd - echo - rm -f /var/lock/subsys/testd - ;; - status) - # Am I alive? - status testd - exit $? - ;; - restart) - echo -n $"Shutting down testd: " - killproc testd - echo - echo -n $"Starting testd: " - testd & - echo - ;; - *) - echo $"Usage: testd {start|stop|status|restart}" - exit 1 -esac - -exit 0 -- cgit v1.2.1