summaryrefslogtreecommitdiffstats
path: root/projectroot
diff options
context:
space:
mode:
Diffstat (limited to 'projectroot')
-rw-r--r--projectroot/etc/init.d/dibbler-client50
-rw-r--r--projectroot/etc/init.d/dibbler-relay50
-rw-r--r--projectroot/etc/init.d/dibbler-server50
3 files changed, 0 insertions, 150 deletions
diff --git a/projectroot/etc/init.d/dibbler-client b/projectroot/etc/init.d/dibbler-client
deleted file mode 100644
index 11d2b17d4..000000000
--- a/projectroot/etc/init.d/dibbler-client
+++ /dev/null
@@ -1,50 +0,0 @@
-#! /bin/sh
-#
-# Starts/stops dibbler-client
-#
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/dibbler-client
-NAME=dibbler-client
-DESC="DHCPv6 client"
-DAEMON_OPTS=run
-
-test -x $DAEMON || exit 0
-
-# Include dibbler defaults if available
-if [ -f /etc/default/dibbler ] ; then
- . /etc/default/dibbler
-fi
-
-set -e
-
-case "$1" in
- start)
- echo -n "Starting $DESC: "
- $DAEMON start 2>&1 > /dev/null
- echo "$NAME."
- ;;
- stop)
- echo -n "Stopping $DESC: "
- ($DAEMON stop 2>&1 > /dev/null; true)
- echo "$NAME."
- ;;
- status)
- echo "Status $DESC: $NAME"
- $DAEMON status
- ;;
- restart|force-reload)
- echo -n "Restarting $DESC: "
- ($DAEMON stop 2>&1 > /dev/null; true)
- sleep 1
- $DAEMON start 2>&1 > /dev/null
- echo "$NAME."
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0
diff --git a/projectroot/etc/init.d/dibbler-relay b/projectroot/etc/init.d/dibbler-relay
deleted file mode 100644
index 292535834..000000000
--- a/projectroot/etc/init.d/dibbler-relay
+++ /dev/null
@@ -1,50 +0,0 @@
-#! /bin/sh
-#
-# Starts/stops dibbler-relay
-#
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/dibbler-relay
-NAME=dibbler-relay
-DESC="DHCPv6 relay"
-DAEMON_OPTS=run
-
-test -x $DAEMON || exit 0
-
-# Include dibbler defaults if available
-if [ -f /etc/default/dibbler ] ; then
- . /etc/default/dibbler
-fi
-
-set -e
-
-case "$1" in
- start)
- echo -n "Starting $DESC: "
- $DAEMON start 2>&1 > /dev/null
- echo "$NAME."
- ;;
- stop)
- echo -n "Stopping $DESC: "
- ($DAEMON stop 2>&1 > /dev/null; true)
- echo "$NAME."
- ;;
- status)
- echo "Status $DESC: $NAME"
- $DAEMON status
- ;;
- restart|force-reload)
- echo -n "Restarting $DESC: "
- ($DAEMON stop 2>&1 > /dev/null; true)
- sleep 1
- $DAEMON start 2>&1 > /dev/null
- echo "$NAME."
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0
diff --git a/projectroot/etc/init.d/dibbler-server b/projectroot/etc/init.d/dibbler-server
deleted file mode 100644
index d03c0c021..000000000
--- a/projectroot/etc/init.d/dibbler-server
+++ /dev/null
@@ -1,50 +0,0 @@
-#! /bin/sh
-#
-# Starts/stops dibbler-client
-#
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/dibbler-server
-NAME=dibbler-server
-DESC="DHCPv6 server"
-DAEMON_OPTS=run
-
-test -x $DAEMON || exit 0
-
-# Include dibbler defaults if available
-if [ -f /etc/default/dibbler ] ; then
- . /etc/default/dibbler
-fi
-
-set -e
-
-case "$1" in
- start)
- echo -n "Starting $DESC: "
- $DAEMON start 2>&1 > /dev/null
- echo "$NAME."
- ;;
- stop)
- echo -n "Stopping $DESC: "
- ($DAEMON stop 2>&1 > /dev/null; true)
- echo "$NAME."
- ;;
- status)
- echo "Status $DESC: $NAME"
- $DAEMON status
- ;;
- restart|force-reload)
- echo -n "Restarting $DESC: "
- ($DAEMON stop 2>&1 > /dev/null; true)
- sleep 1
- $DAEMON start 2>&1 > /dev/null
- echo "$NAME."
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0