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 @@
1#!/bin/sh
2#
3# DHCDBD startup script
4
5. /etc/profile
6
7case $1 in
8 'start')
9 echo -n "Starting dhcdbd daemon: dhcdbd"
10 /sbin/dhcdbd --system
11 echo "."
12 ;;
13
14 'stop')
15 echo -n "Stopping dhcdbd: dhcdbd"
16 killall `ps |grep /sbin/dhcdbd | grep -v grep | cut "-d " -f2`
17 echo "."
18 ;;
19
20 'restart')
21 $0 stop
22 $0 start
23 ;;
24
25 *)
26 echo "Usage: $0 { start | stop | restart }"
27 ;;
28esac