blob: c93deee1a7b58a9c80c6ac9467e8454d325fd704 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# we use systemd to control ISC daemons from within vyos-1x
FILES="/etc/default/isc-dhcp-server /etc/default/isc-dhcp-relay"
for FILE in ${FILES}
do
if [ -f ${FILE} ]; then
rm -f ${FILE}
fi
done
|