1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/archivist_ynh.git synced 2024-09-03 18:15:55 +02:00
archivist_ynh/scripts/actions/force_backup

43 lines
1.3 KiB
Text
Raw Normal View History

2018-07-21 19:42:17 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
2019-01-30 16:07:38 +01:00
ynh_script_progression --message="Retrieve arguments from the manifest"
2018-07-21 19:42:17 +02:00
2018-09-30 20:01:19 +02:00
app=${YNH_APP_INSTANCE_NAME:-$YNH_APP_ID}
2018-07-21 19:42:17 +02:00
final_path=$(ynh_app_setting_get $app final_path)
#=================================================
# CHECK IF ARGUMENTS ARE CORRECT
#=================================================
#=================================================
# CHECK IF AN ACTION HAS TO BE DONE
#=================================================
#=================================================
# SPECIFIC ACTION
#=================================================
# FORCE A NEW BACKUP
#=================================================
2019-01-30 16:07:38 +01:00
ynh_script_progression --message="Force a new backup" --weight=9
2018-07-21 19:42:17 +02:00
ynh_exec_warn nice -n10 $final_path/archivist.sh
2019-01-30 16:07:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Execution completed" --last