remove 680 B

123456789101112131415161718192021222324252627
  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
  9. then
  10. ynh_script_progression "Removing $app service integration..."
  11. yunohost service remove $app
  12. fi
  13. ynh_config_remove_systemd
  14. ynh_config_remove_nginx
  15. ynh_nodejs_remove
  16. #=================================================
  17. # END OF SCRIPT
  18. #=================================================
  19. ynh_script_progression "Removal of $app completed"