summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bcfg2.init32
1 files changed, 0 insertions, 32 deletions
diff --git a/bcfg2.init b/bcfg2.init
deleted file mode 100644
index 9da2e018c..000000000
--- a/bcfg2.init
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-#
-# bcfg2 - bcfg2 configuration client
-#
-# chkconfig: 2345 19 81
-# description: bcfg2 client for configuration requests
-#
-
-case "$1" in
- start)
- if test -e /etc/donttouchme; then
- rm -f /etc/donttouchme
- echo "bcfg2 does not need to run."
- else
- echo -n "Running bcfg: "
- /usr/sbin/bcfg2 -q
- echo "bcfg2"
- fi
- ;;
- stop)
- /bin/true
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "Usage: bcfg2 {start|stop|restart}"
- exit 1
-esac
-
-exit 0