remove 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/bin/bash
  2. # Retrieve arguments
  3. domain=$(sudo yunohost app setting hotspot domain)
  4. # The End
  5. sudo service ynh-hotspot stop
  6. sudo yunohost service remove ynh-hotspot
  7. sudo rm -f /etc/init.d/ynh-hotspot
  8. # Remove confs
  9. sudo rm -f /etc/hostapd/hostapd.conf{.tpl,} /etc/radvd.conf{.tpl,} /etc/dhcp/dhcpd.conf{.tpl,}
  10. sudo rm -f /etc/nginx/conf.d/${domain}.d/wifiadmin.conf
  11. sudo rm -f /etc/php5/fpm/pool.d/wifiadmin.conf
  12. # Restart services
  13. sudo yunohost service stop php5-fpm
  14. sudo yunohost service start php5-fpm
  15. sudo service nginx reload
  16. # Remove sources
  17. sudo rm -rf /var/www/wifiadmin/
  18. # Remove user
  19. sudo userdel -f wifiadmin
  20. # Restart vpnclient service if installed to set the IPv6 address
  21. # A new start will fix the address without unsetting all stuff
  22. sudo yunohost app list -f vpnclient --json | grep -q '"installed": true'
  23. if [ "$?" -eq 0 ]; then
  24. sudo service ynh-vpnclient start
  25. fi
  26. # Remove packets
  27. # The yunohost policy is currently to not uninstall packets (dependency problems)
  28. ## sudo apt-get --assume-yes --force-yes remove hostapd radvd isc-dhcp-server iptables
  29. ## sudo apt-get --assume-yes --force-yes remove sipcalc
  30. exit 0