remove 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #!/bin/bash
  2. # Wifi Hotspot app for YunoHost
  3. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. # Contribute at https://github.com/jvaubourg/hotspot_ynh
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Affero General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Affero General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Affero General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. # Retrieve arguments
  19. domain=$(sudo yunohost app setting hotspot domain)
  20. # The End
  21. sudo service ynh-hotspot stop
  22. sudo yunohost service remove ynh-hotspot
  23. sudo rm -f /etc/init.d/ynh-hotspot
  24. sudo rm -f /tmp/.ynh-hotspot-*
  25. # Update firewall for DHCP
  26. sudo yunohost firewall disallow --ipv6 UDP 547
  27. sudo yunohost firewall disallow UDP 67
  28. # Remove confs
  29. sudo rm -fr /etc/dnsmasq.d.tpl/
  30. sudo rm -f /etc/hostapd/hostapd.conf{.tpl,} /etc/radvd.conf{.tpl,} /etc/dhcp/dhcpd.conf{.tpl,}
  31. sudo rm -f /etc/nginx/conf.d/${domain}.d/wifiadmin.conf
  32. sudo rm -f /etc/php5/fpm/pool.d/wifiadmin.conf
  33. # Restart services
  34. sudo yunohost service stop php5-fpm
  35. sudo yunohost service start php5-fpm
  36. sudo service nginx reload
  37. # Remove sources
  38. sudo rm -rf /var/www/wifiadmin/
  39. # Remove packets
  40. # The yunohost policy is currently to not uninstall packets (dependency problems)
  41. ## sudo apt-get --assume-yes --force-yes remove hostapd iptables sipcalc wireless-tools
  42. exit 0