mirror of
https://github.com/YunoHost-Apps/archivist_ynh.git
synced 2024-09-03 18:15:55 +02:00
Actions and config_panel tests
This commit is contained in:
parent
9e96638a07
commit
de25d2d17f
4 changed files with 43 additions and 1 deletions
|
@ -5,6 +5,15 @@
|
||||||
core_backup=1
|
core_backup=1
|
||||||
apps_backup=1
|
apps_backup=1
|
||||||
frequency="Weekly"
|
frequency="Weekly"
|
||||||
|
; Config_panel
|
||||||
|
main.encryption.encrypt=1|0
|
||||||
|
main.encryption.encryption_pwd=password1|password2
|
||||||
|
main.backup_types.core_backup=1|0
|
||||||
|
main.backup_types.apps_backup=1|0
|
||||||
|
main.backup_options.frequency=Daily|Each 3 days|Weekly|Biweekly|Monthly
|
||||||
|
main.backup_options.max_size=1000
|
||||||
|
main.overwrite_files.overwrite_cron=1|0
|
||||||
|
main.global_config.email_type=1|0
|
||||||
; Checks
|
; Checks
|
||||||
pkg_linter=1
|
pkg_linter=1
|
||||||
setup_sub_dir=0
|
setup_sub_dir=0
|
||||||
|
@ -18,11 +27,22 @@
|
||||||
multi_instance=1
|
multi_instance=1
|
||||||
port_already_use=0
|
port_already_use=0
|
||||||
change_url=0
|
change_url=0
|
||||||
|
config_panel=1
|
||||||
|
;; Test actions without encryption
|
||||||
|
# Actions can't be tested with the encryption on, because LXC does not support fuse.
|
||||||
|
; Manifest
|
||||||
|
encrypt=0
|
||||||
|
encryption_pwd=""
|
||||||
|
core_backup=1
|
||||||
|
apps_backup=1
|
||||||
|
; Checks
|
||||||
|
setup_nourl=1
|
||||||
|
actions=1
|
||||||
;;; Levels
|
;;; Levels
|
||||||
Level 5=auto
|
Level 5=auto
|
||||||
;;; Options
|
;;; Options
|
||||||
Email=
|
Email=
|
||||||
Notification=down
|
Notification=change
|
||||||
;;; Upgrade options
|
;;; Upgrade options
|
||||||
; commit=2b2793737d5e1374659cbb74838d10162a2147e6
|
; commit=2b2793737d5e1374659cbb74838d10162a2147e6
|
||||||
name=03 Nov 2017 2b2793737d5e1374659cbb74838d10162a2147e6
|
name=03 Nov 2017 2b2793737d5e1374659cbb74838d10162a2147e6
|
||||||
|
|
|
@ -9,6 +9,13 @@
|
||||||
source scripts/_common.sh
|
source scripts/_common.sh
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# MANAGE SCRIPT FAILURE
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
# Exit if an error occurs during the execution of the script
|
||||||
|
ynh_abort_if_errors
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RETRIEVE ARGUMENTS
|
# RETRIEVE ARGUMENTS
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -9,6 +9,13 @@
|
||||||
source scripts/_common.sh
|
source scripts/_common.sh
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# MANAGE SCRIPT FAILURE
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
# Exit if an error occurs during the execution of the script
|
||||||
|
ynh_abort_if_errors
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RETRIEVE ARGUMENTS
|
# RETRIEVE ARGUMENTS
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -9,11 +9,19 @@
|
||||||
source scripts/_common.sh
|
source scripts/_common.sh
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# MANAGE SCRIPT FAILURE
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
# Exit if an error occurs during the execution of the script
|
||||||
|
ynh_abort_if_errors
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RETRIEVE ARGUMENTS
|
# RETRIEVE ARGUMENTS
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
app=${YNH_APP_INSTANCE_NAME:-$YNH_APP_ID}
|
app=${YNH_APP_INSTANCE_NAME:-$YNH_APP_ID}
|
||||||
|
|
||||||
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
||||||
encrypt=$(ynh_app_setting_get --app=$app --key=encrypt)
|
encrypt=$(ynh_app_setting_get --app=$app --key=encrypt)
|
||||||
core_backup=$(ynh_app_setting_get --app=$app --key=core_backup)
|
core_backup=$(ynh_app_setting_get --app=$app --key=core_backup)
|
||||||
|
|
Loading…
Add table
Reference in a new issue