2018-09-14 05:20:02 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
|
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2018-09-28 12:38:03 +02:00
|
|
|
squid=$(ynh_app_setting_get $app squid_folder)
|
2018-09-14 05:20:02 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE CONFIG OF SQUID3
|
|
|
|
#=================================================
|
|
|
|
|
2018-09-28 12:38:03 +02:00
|
|
|
ynh_backup "/etc/$squid/squid.conf"
|