remove 472 B

12345678910111213141516171819
  1. #!/bin/bash
  2. # The End
  3. sudo yunohost service stop ynh-vpnclient
  4. sudo yunohost service remove ynh-vpnclient
  5. sudo rm -f /etc/init.d/ynh-vpnclient
  6. # Remove confs
  7. sudo rm -f /etc/openvpn/client.conf*
  8. # Remove certificates
  9. sudo rm -rf /etc/openvpn/keys/
  10. # Remove packets
  11. # The yunohost policy is currently to not uninstall packets (dependency problems)
  12. ## sudo apt-get --assume-yes --force-yes remove openvpn
  13. ## sudo apt-get --assume-yes --force-yes remove sipcalc
  14. exit 0