remove 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #!/bin/bash
  2. # Wifi Hotspot app for YunoHost
  3. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. # Contribute at https://github.com/labriqueinternet/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 systemctl stop ynh-hotspot
  22. sudo systemctl disable ynh-hotspot
  23. sudo rm -f /etc/systemd/system/ynh-hotspot.service /usr/local/bin/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.dhcpd/
  30. sudo rm -f /etc/hostapd/hostapd.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. # Remove free firmwares
  34. if ! dpkg -l firmware-atheros &> /dev/null; then
  35. sudo rm -f /lib/firmware/htc_7010.fw
  36. sudo rm -f /lib/firmware/htc_9271.fw
  37. fi
  38. # Restart services
  39. sudo systemctl restart php5-fpm
  40. sudo systemctl reload nginx
  41. # Remove sources
  42. sudo rm -rf /var/www/wifiadmin/
  43. exit 0