1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tandoor_ynh.git synced 2024-09-03 20:35:56 +02:00

Fix missing variable in change_url

This commit is contained in:
Salamandar 2024-01-28 13:02:57 +01:00
parent d687a81b83
commit 81fdaf3964
3 changed files with 3 additions and 8 deletions

View file

@ -6,6 +6,9 @@
nodejs_version=16
# Used in .env
timezone="$(cat /etc/timezone)"
#=================================================
# PERSONAL HELPERS
#=================================================

View file

@ -16,8 +16,6 @@ source /usr/share/yunohost/helpers
secretkey=$(ynh_string_random --length=12)
ynh_app_setting_set --app=$app --key=secretkey --value="$secretkey"
timezone="$(cat /etc/timezone)"
#=================================================
# INSTALL DEPENDENCIES
#=================================================

View file

@ -18,12 +18,6 @@ ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name="$app" --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# INITIALIZE AND STORE SETTINGS
#=================================================
timezone="$(cat /etc/timezone)"
#=================================================
# UPGRADE DEPENDENCIES
#=================================================