summaryrefslogtreecommitdiffstats
path: root/contrib/p910nd-0.8/p910nd.sh
diff options
context:
space:
mode:
authorMarty Connor2010-01-17 03:47:39 +0100
committerMarty Connor2010-01-17 03:47:39 +0100
commit330abebddf67ab27998f64070f27d5874cbc7b06 (patch)
tree08f5954725930ee9c38b0afab4cb9a30c71ce7e3 /contrib/p910nd-0.8/p910nd.sh
parent[sanboot] Prevent leaking a stack reference for "keep-san" AoE (diff)
downloadipxe-330abebddf67ab27998f64070f27d5874cbc7b06.tar.gz
ipxe-330abebddf67ab27998f64070f27d5874cbc7b06.tar.xz
ipxe-330abebddf67ab27998f64070f27d5874cbc7b06.zip
[contrib] Move most contrib content to a separate repository
Most of the content that was previously in this directory has been moved to a separate git repository: http://git.etherboot.org/?p=contrib.git;a=summary or the Etherboot Project wiki: http://etherboot.org/
Diffstat (limited to 'contrib/p910nd-0.8/p910nd.sh')
-rwxr-xr-xcontrib/p910nd-0.8/p910nd.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/contrib/p910nd-0.8/p910nd.sh b/contrib/p910nd-0.8/p910nd.sh
deleted file mode 100755
index 291a836a..00000000
--- a/contrib/p910nd-0.8/p910nd.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-#
-# p910nd.sh This shell script takes care of starting and stopping
-# p910nd (port 9100+n printer daemon)
-# This script only controls the one on port 9101.
-# You can start others if you wish.
-#
-
-# Todo: Make it fully LSB
-
-# See how we were called.
-case "$1" in
- start)
- # Start daemons.
- echo -n "Starting p910nd: "
- # default port is 1 so it will appear as p9101d on a ps
- start_daemon p910nd
- echo
- ;;
- stop)
- # Stop daemons.
- echo -n "Shutting down p910nd: "
- killproc p9101d
- echo
- rm -f /var/run/p9101.pid
- ;;
- status)
- status p9101d
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "Usage: p910nd {start|stop|restart|status}"
- exit 1
-esac
-
-exit 0