remove 618 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. source _common.sh
  3. source /usr/share/yunohost/helpers
  4. #=================================================
  5. # REMOVE SYSTEM CONFIGURATIONS
  6. #=================================================
  7. ynh_script_progression "Removing system configurations related to $app..."
  8. if ynh_hide_warnings yunohost service status $app >/dev/null; then
  9. yunohost service remove $app
  10. fi
  11. ynh_config_remove_systemd
  12. ynh_config_remove_nginx
  13. ynh_nodejs_remove
  14. #=================================================
  15. # END OF SCRIPT
  16. #=================================================
  17. ynh_script_progression "Removal of $app completed"