diff options
-rw-r--r-- | debian/bcfg2-server.bcfg2-xmlrpc.init | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/debian/bcfg2-server.bcfg2-xmlrpc.init b/debian/bcfg2-server.bcfg2-xmlrpc.init deleted file mode 100644 index efcd006a8..000000000 --- a/debian/bcfg2-server.bcfg2-xmlrpc.init +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# -# Bcfg2Server - Bcfg2 configuration daemon -# -# chkconfig: 2345 19 81 -# description: bcfg2 server for configuration requests -# - -PIDFILE=/var/tmp/bcfg2-xmlrpc.pid - -case "$1" in - start) - echo -n "Starting Bcfg2ServerX: " - start-stop-daemon --make-pidfile --pidfile "${PIDFILE}" -b -S --startas /usr/sbin/Bcfg2ServerX - echo "Bcfg2Server" - ;; - stop) - echo -n "Stopping Bcfg2Server: " - start-stop-daemon --pidfile "${PIDFILE}" -K /usr/sbin/Bcfg2ServerX - echo done - ;; - restart) - $0 stop - $0 start - ;; - force-reload) - $0 stop - $0 start - ;; - *) - echo "Usage: bcfg2-xmlrpc-server {start|stop|restart|force-reload}" - exit 1 -esac - -exit 0 |