1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hotspot_ynh.git synced 2024-09-03 19:25:53 +02:00

We don't need prerequisites stuff, dnsmasq is the default now

This commit is contained in:
Alexandre Aubin 2021-01-07 18:14:07 +01:00
parent 6056df3b53
commit 80133986a9
2 changed files with 0 additions and 14 deletions

View file

@ -89,12 +89,6 @@ if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
ynh_die --message="Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
fi
#=================================================
# RUN PREREQUISITES
#=================================================
source ./prerequisites
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================

View file

@ -1,8 +0,0 @@
# Source me
# Check if dnsmasq is active
systemctl is-active dnsmasq &> /dev/null
if [[ $? -ne 0 ]]; then
ynh_die --message="You need to enable dnsmasq instead of bind9 (apt-get remove bind9 && systemctl start dnsmasq)"
fi