89d39fc7a3
The folder init.d is currently installed by default since it's part of our skeleton. This patch creates a package out of it and make busybox/sysvinit depends on it. This way, if you chose another init, you don't end up with a useless init.d folder. [Thomas: - make the initscripts package selectable via a hidden bool - remove some unneeded changes in sysvinit.mk.] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
360 B
Bash
Executable File
29 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Start the network....
|
|
#
|
|
|
|
# Debian ifupdown needs the /run/network lock directory
|
|
mkdir -p /run/network
|
|
|
|
case "$1" in
|
|
start)
|
|
echo "Starting network..."
|
|
/sbin/ifup -a
|
|
;;
|
|
stop)
|
|
echo -n "Stopping network..."
|
|
/sbin/ifdown -a
|
|
;;
|
|
restart|reload)
|
|
"$0" stop
|
|
"$0" start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|
|
|