blob: 350843c73885ce5b2f4f59b69b915f8351cae775 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
if [ -f /etc/dhcp/dhclient-exit-hooks.d/ddclient ]; then
rm -f /etc/dhcp/dhclient-exit-hooks.d/ddclient
fi
if [ -f /etc/ddclient.conf ]; then
rm -f /etc/ddclient.conf
fi
|