mirror of
https://github.com/YunoHost-Apps/jenkins_ynh.git
synced 2024-09-03 19:26:18 +02:00
67 lines
1.9 KiB
Bash
67 lines
1.9 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
if [ ! -e _common.sh ]; then
|
|
# Get the _common.sh file if it's not in the current directory
|
|
cp ../settings/scripts/_common.sh ./_common.sh
|
|
chmod a+rx _common.sh
|
|
fi
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# MANAGE SCRIPT FAILURE
|
|
#=================================================
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
ynh_clean_setup () {
|
|
ynh_clean_check_starting
|
|
}
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
#=================================================
|
|
# STANDARD BACKUP STEPS
|
|
#=================================================
|
|
# BACKUP OF THE MAIN DIR OF THE APP
|
|
#=================================================
|
|
|
|
ynh_system_reload jenkins stop
|
|
sleep 1
|
|
|
|
CHECK_SIZE "$final_path"
|
|
ynh_backup "$final_path"
|
|
|
|
#=================================================
|
|
# BACKUP OF THE NGINX CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
#=================================================
|
|
# SPECIFIC BACKUP
|
|
#=================================================
|
|
# BACKUP OF THE JENKINS' BOOT CONFIG
|
|
#=================================================
|
|
|
|
ynh_backup /etc/default/$app
|
|
|
|
#=================================================
|
|
# CHECK JENKINS STARTING
|
|
#=================================================
|
|
|
|
# Wait for Jenkins fully started
|
|
ynh_check_starting "Jenkins is fully up and running" "/var/log/$app/$app.log" "300"
|