mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
12 lines
223 B
Bash
Executable File
12 lines
223 B
Bash
Executable File
#!/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
|