thinrasp/etc_org/init.d/pppd-dns

24 lines
612 B
Plaintext
Raw Permalink Normal View History

2019-11-26 21:36:24 +01:00
#!/bin/sh -e
### BEGIN INIT INFO
# Provides: pppd-dns
# Required-Start: $local_fs
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: Restore resolv.conf if the system crashed.
# Description: Restore /etc/resolv.conf if the system crashed before the
# ppp link was shut down.
### END INIT INFO
. /lib/lsb/init-functions
case "$1" in
start) ;;
stop|restart|force-reload) exit 0 ;;
*) echo "Usage: $0 {start|stop|restart|force-reload}" >&2; exit 1 ;;
esac
[ -x /etc/ppp/ip-down.d/0000usepeerdns ] \
&& exec /etc/ppp/ip-down.d/0000usepeerdns