Files
Troposphere/include/root/etc/init.d/.OLD_S45network
T

29 lines
359 B
Bash
Raw Normal View History

2026-07-29 03:36:26 +03:00
#!/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)
printf "Stopping network..."
/sbin/ifdown -a
;;
restart|reload)
"$0" stop
"$0" start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?