9ba8b65
#!/bin/bash
9ba8b65
export LC_ALL=C
9ba8b65
9ba8b65
# restart dhcpd whenever $1 interface is brought up by NM (rhbz #565921)
9ba8b65
if [ "$2" = "up" ]; then
cc2eb94
    # exit if the service is not configured to be started in the current runlevel
cc2eb94
    /bin/systemctl is-enabled dhcpd.service || exit 0
9ba8b65
cc2eb94
    # restart service
cc2eb94
    /bin/systemctl restart dhcpd.service || :
9ba8b65
fi