e5f537ff2a
This patch adds support for sysv init to the dhcp-all-interfaces element. Specifically, it adds a sysv init script and the relevant install/config steps. Tested with Debian jessie/testing. Change-Id: I4ae1d5365bafda188cb65ea1fb72d8ffe2408910
32 lines
672 B
Bash
Executable File
32 lines
672 B
Bash
Executable File
#!/bin/sh -e
|
|
### BEGIN INIT INFO
|
|
# Provides: dhcp-all-interfaces
|
|
# Required-Start: $local_fs
|
|
# Required-Stop: $local_fs
|
|
# Default-Start: S
|
|
# Default-Stop: 0 6
|
|
# X-Start-Before: networking
|
|
# Short-Description: Autodetect network interfaces
|
|
# Description: Autodetect network interfaces during boot and configure them for DHCP
|
|
### END INIT INFO
|
|
|
|
NAME=dhcp-all-interfaces
|
|
INIT_NAME=/etc/init.d/${NAME}
|
|
SCRIPT_NAME=/usr/local/sbin/${NAME}.sh
|
|
|
|
[ -x $SCRIPT_NAME ] || exit 0
|
|
|
|
case "$1" in
|
|
start)
|
|
$SCRIPT_NAME
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo "Usage: $INIT_NAME {start|stop}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|