mirror of
https://github.com/YunoHost-Apps/chatonsinfos_ynh.git
synced 2024-09-03 18:15:58 +02:00
25 lines
868 B
Text
25 lines
868 B
Text
|
#!/bin/bash
|
||
|
# In simple cases, you don't need a config script.
|
||
|
|
||
|
# With a simple config_panel.toml, you can write in the app settings, in the
|
||
|
# upstream config file or replace complete files (logo ...) and restart services.
|
||
|
|
||
|
# The config scripts allows you to go further, to handle specific cases
|
||
|
# (validation of several interdependent fields, specific getter/setter for a value,
|
||
|
# display dynamic informations or choices, pre-loading of config type .cube... ).
|
||
|
|
||
|
#=================================================
|
||
|
# GENERIC STARTING
|
||
|
#=================================================
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
ynh_abort_if_errors
|
||
|
|
||
|
#=================================================
|
||
|
# GENERIC FINALIZATION
|
||
|
#=================================================
|
||
|
ynh_app_config_run $1
|