#!/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