9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
# Source me
|
|
|
|
# Check if dnsmasq is active
|
|
systemctl is-active dnsmasq &> /dev/null
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
ynh_die "You need to enable dnsmasq instead of bind9 (apt-get remove bind9 && systemctl start dnsmasq)"
|
|
fi
|