11 lines
197 B
Bash
Executable file
11 lines
197 B
Bash
Executable file
#!/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
|
|
|