remove 785 B

123456789101112131415161718192021222324252627
  1. #!/bin/bash
  2. #=================================================
  3. # IMPORT GENERIC HELPERS
  4. #=================================================
  5. source _common.sh
  6. source /usr/share/yunohost/helpers
  7. #=================================================
  8. # REMOVE SYSTEM CONFIGURATIONS
  9. #=================================================
  10. ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
  11. # Remove the app-specific logrotate config
  12. ynh_remove_logrotate
  13. # Remove a cron file
  14. ynh_secure_remove --file="/etc/cron.d/$app"
  15. ynh_secure_remove --file="/var/log/$app"
  16. #=================================================
  17. # END OF SCRIPT
  18. #=================================================
  19. ynh_script_progression --message="Removal of $app completed" --last