6 lines
84 B
Bash
6 lines
84 B
Bash
#!/bin/sh -eu
|
|
if [ -x /sbin/resolvconf ] ; then
|
|
/sbin/resolvconf -d lo.dnsmasq
|
|
fi
|
|
|