blob: 2653e68145b257de86dc3fb1187800205be29690 [file] [log] [blame]
#!/bin/sh
# Initialize loopback, this is done here to allow other programs in the startup
# scripts to bind to it.
case "$1" in
start)
# Configure loopback
ifup lo
;;
stop)
# Leave lo up
;;
restart)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac