8 lines
238 B
Bash
8 lines
238 B
Bash
#!/bin/sh
|
|
# ifdown hook script for resolvconf
|
|
# Written by Roy Marples <roy@marples.name> under the BSD-2 license
|
|
|
|
[ -x /sbin/resolvconf ] || exit 0
|
|
|
|
[ "$METHOD" = dhcp ] && /sbin/resolvconf -f -d "$IFACE"
|
|
/sbin/resolvconf -f -d "$IFACE"
|