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

Delete scripts/config: zzzz

This commit is contained in:
Alexandre Aubin 2024-06-29 18:38:29 +02:00 committed by GitHub
parent 1bafb57c8d
commit db6a78f7ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,48 +0,0 @@
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# 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
old_overwrite_nginx="$(ynh_app_setting_get --app="$app" --key="overwrite_nginx")"
old_overwrite_nginx=$(b01_to_bool "$old_overwrite_nginx")
overwrite_nginx="${YNH_CONFIG_MAIN_OVERWRITE_FILES_OVERWRITE_NGINX:-$old_overwrite_nginx}"
#=================================================
# 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"
}
#=================================================
# MODIFY THE CONFIGURATION
#=================================================
apply_config() {
# Set overwrite_nginx
overwrite_nginx=$(bool_to_01 "$overwrite_nginx")
ynh_app_setting_set --app="$app" --key=overwrite_nginx --value="$overwrite_nginx"
}
#=================================================
# GENERIC FINALIZATION
#=================================================
ynh_app_config_run "$1"