11 lines
197 B
Plaintext
11 lines
197 B
Plaintext
|
#!/bin/sh -e
|
||
|
exit 0
|
||
|
|
||
|
#
|
||
|
# Restore /etc/resolv.conf if the system crashed before the ppp link
|
||
|
# was shut down.
|
||
|
|
||
|
[ -x /etc/ppp/ip-down.d/0000usepeerdns ] \
|
||
|
&& exec /etc/ppp/ip-down.d/0000usepeerdns
|
||
|
|