remove 699 B

12345678910111213141516171819202122232425
  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 "Removing system configurations related to $app..."
  11. # Remove the app-specific logrotate config
  12. ynh_config_remove_logrotate
  13. # Remove a cron file
  14. ynh_safe_rm "/etc/cron.d/$app"
  15. #=================================================
  16. # END OF SCRIPT
  17. #=================================================
  18. ynh_script_progression "Removal of $app completed"