remove 744 B

1234567891011121314151617181920212223242526
  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. #=================================================
  16. # END OF SCRIPT
  17. #=================================================
  18. ynh_script_progression --message="Removal of $app completed" --last