remove 459 B

12345678910111213141516
  1. #!/bin/bash
  2. # The End
  3. sudo yunohost service stop ynh-hotspot
  4. sudo yunohost service remove ynh-hotspot
  5. sudo rm -f /etc/init.d/ynh-hotspot
  6. # Remove confs
  7. sudo rm -rf /etc/hostapd/ /etc/radvd.conf /etc/dhcp/dhcpd.conf
  8. # Remove packets
  9. # The yunohost policy is currently to not uninstall packets (dependency problems)
  10. ## sudo apt-get --assume-yes --force-yes remove hostapd radvd isc-dhcp-server
  11. ## sudo apt-get --assume-yes --force-yes remove sipcalc
  12. exit 0