summaryrefslogtreecommitdiffstats
path: root/meta-extras/packages/dhcdbd/files/dhcdbd
diff options
context:
space:
mode:
Diffstat (limited to 'meta-extras/packages/dhcdbd/files/dhcdbd')
-rw-r--r--meta-extras/packages/dhcdbd/files/dhcdbd28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta-extras/packages/dhcdbd/files/dhcdbd b/meta-extras/packages/dhcdbd/files/dhcdbd
deleted file mode 100644
index 568753c28c..0000000000
--- a/meta-extras/packages/dhcdbd/files/dhcdbd
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# DHCDBD startup script
-
-. /etc/profile
-
-case $1 in
- 'start')
- echo -n "Starting dhcdbd daemon: dhcdbd"
- /sbin/dhcdbd --system
- echo "."
- ;;
-
- 'stop')
- echo -n "Stopping dhcdbd: dhcdbd"
- killall `ps |grep /sbin/dhcdbd | grep -v grep | cut "-d " -f2`
- echo "."
- ;;
-
- 'restart')
- $0 stop
- $0 start
- ;;
-
- *)
- echo "Usage: $0 { start | stop | restart }"
- ;;
-esac