mirror of
https://github.com/YunoHost-Apps/hotspot_ynh.git
synced 2024-09-03 19:25:53 +02:00
8 lines
217 B
Text
8 lines
217 B
Text
# 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
|