1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jenkins_ynh.git synced 2024-09-03 19:26:18 +02:00
jenkins_ynh/scripts/config

73 lines
2.4 KiB
Text
Raw Normal View History

2018-09-30 11:50:17 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
app=${YNH_APP_INSTANCE_NAME:-$YNH_APP_ID}
2019-05-28 00:28:01 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-09-30 11:50:17 +02:00
#=================================================
# SPECIFIC CODE
#=================================================
# LOAD VALUES
#=================================================
# Load the real value from the app config or elsewhere.
# Then get the value from the form.
# If the form has a value for a variable, take the value from the form,
# Otherwise, keep the value from the app config.
# Overwrite nginx configuration
2019-05-28 00:28:01 +02:00
old_overwrite_nginx="$(ynh_app_setting_get --app=$app --key=overwrite_nginx)"
2018-09-30 11:50:17 +02:00
old_overwrite_nginx=$(bool_to_true_false $old_overwrite_nginx)
overwrite_nginx="${YNH_CONFIG_MAIN_OVERWRITE_FILES_OVERWRITE_NGINX:-$old_overwrite_nginx}"
2019-01-30 19:23:57 +01:00
# Type of admin mail configuration
2019-05-28 00:28:01 +02:00
old_admin_mail_html="$(ynh_app_setting_get --app=$app --key=admin_mail_html)"
2019-01-30 19:23:57 +01:00
old_admin_mail_html=$(bool_to_true_false $old_admin_mail_html)
admin_mail_html="${YNH_CONFIG_MAIN_GLOBAL_CONFIG_EMAIL_TYPE:-$old_admin_mail_html}"
2018-09-30 11:50:17 +02:00
#=================================================
# SHOW_CONFIG FUNCTION FOR 'SHOW' COMMAND
#=================================================
show_config() {
# here you are supposed to read some config file/database/other then print the values
# echo "YNH_CONFIG_${PANEL_ID}_${SECTION_ID}_${OPTION_ID}=value"
echo "YNH_CONFIG_MAIN_OVERWRITE_FILES_OVERWRITE_NGINX=$overwrite_nginx"
2019-01-30 19:23:57 +01:00
echo "YNH_CONFIG_MAIN_GLOBAL_CONFIG_EMAIL_TYPE=$admin_mail_html"
2018-09-30 11:50:17 +02:00
}
#=================================================
# MODIFY THE CONFIGURATION
#=================================================
apply_config() {
# Set overwrite_nginx
overwrite_nginx=$(bool_to_01 $overwrite_nginx)
2019-05-28 00:28:01 +02:00
ynh_app_setting_set --app=$app --key=overwrite_nginx --value="$overwrite_nginx"
2019-01-30 19:23:57 +01:00
# Set admin_mail_html
admin_mail_html=$(bool_to_01 $admin_mail_html)
2019-05-28 00:28:01 +02:00
ynh_app_setting_set --app=$app --key=admin_mail_html --value="$admin_mail_html"
2018-09-30 11:50:17 +02:00
}
#=================================================
# GENERIC FINALIZATION
#=================================================
2021-12-08 22:31:34 +01:00
ynh_app_config_run $1