diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-10-19 07:42:41 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-10-19 07:42:41 +0200 |
commit | 7703b03cdde7ecb44ab6d3ea0e4c5d67f0f482de (patch) | |
tree | 2a96b1487f9db3d2248fb1c601ec99db24bc2ecb /data | |
parent | 53750b39cd6bf246ae3c52cea4d15b93264c486b (diff) | |
download | vyos-build-7703b03cdde7ecb44ab6d3ea0e4c5d67f0f482de.tar.gz vyos-build-7703b03cdde7ecb44ab6d3ea0e4c5d67f0f482de.zip |
T913: add startup script for dhcpv6-relay
Diffstat (limited to 'data')
-rwxr-xr-x | data/live-build-config/includes.chroot/etc/init.d/isc-dhcpv6-relay | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/data/live-build-config/includes.chroot/etc/init.d/isc-dhcpv6-relay b/data/live-build-config/includes.chroot/etc/init.d/isc-dhcpv6-relay new file mode 100755 index 00000000..5a8ce620 --- /dev/null +++ b/data/live-build-config/includes.chroot/etc/init.d/isc-dhcpv6-relay @@ -0,0 +1,50 @@ +#!/bin/sh +# +# + +### BEGIN INIT INFO +# Provides: isc-dhcpv6-relay +# Required-Start: $remote_fs $network +# Required-Stop: $remote_fs $network +# Should-Start: $local_fs +# Should-Stop: $local_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: IPv6 DHCP relay +# Description: Dynamic Host Configuration Protocol Relay for IPv6 +### END INIT INFO + +# It is not safe to start if we don't have a default configuration... +if [ ! -f /etc/default/isc-dhcpv6-relay ]; then + echo "/etc/default/isc-dhcpv6-relay does not exist! - Aborting..." + exit 1 +fi + +# Source init functions +. /lib/lsb/init-functions + +# Read init script configuration (interfaces the daemon should listen on +# and the DHCP server we should forward requests to.) +[ -f /etc/default/isc-dhcpv6-relay ] && . /etc/default/isc-dhcpv6-relay + +DHCRELAYPID=/var/run/dhcv6relay.pid + +case "$1" in + start) + start-stop-daemon --start --quiet --pidfile $DHCRELAYPID \ + --exec /usr/sbin/dhcrelay -- -q $OPTIONS -pf $DHCRELAYPID + ;; + stop) + start-stop-daemon --stop --quiet --pidfile $DHCRELAYPID + ;; + restart | force-reload) + $0 stop + sleep 2 + $0 start + ;; + *) + echo "Usage: /etc/init.d/isc-dhcpv6-relay {start|stop|restart|force-reload}" + exit 1 +esac + +exit 0 |