1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00

Fix restore and upgrade scripts

This commit is contained in:
jb 2017-09-26 17:01:57 +02:00
parent a0c8b78751
commit ea571250f1
3 changed files with 15 additions and 6 deletions

View file

@ -62,6 +62,7 @@ ynh_app_setting_set "$app" domain "$domain"
ynh_app_setting_set "$app" path "$path_url"
ynh_app_setting_set "$app" admin "$admin"
ynh_app_setting_set "$app" is_public "$is_public"
ynh_app_setting_set "$app" final_path "$final_path"
#=================================================
# STANDARD MODIFICATIONS

View file

@ -87,7 +87,7 @@ ynh_install_app_dependencies libxml2-dev libxslt-dev libfreetype6-dev \
ynh_psql_test_if_first_run
db_pwd=$(ynh_app_setting_get "$app" pgsqlpwd)
ynh_psql_setup_db "$db_name $db_name" "$db_pwd"
ynh_psql_setup_db "$db_name" "$db_name" "$db_pwd"
ynh_psql_connect_as "$db_name" "$db_pwd" "$db_name" < ./db.sql
#=================================================

View file

@ -51,11 +51,6 @@ path_url=$(ynh_normalize_url_path $path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
#=================================================
# NGINX CONFIGURATION
@ -73,6 +68,19 @@ ynh_system_user_create_smtp "$app" "$smtp_pwd"
#=================================================
# SPECIFIC UPGRADE
#=================================================
#=================================================
# PIP INSTALLATION
#=================================================
(
set +eu
source "${final_path}/venv/bin/activate"
"${final_path}/venv/bin/pip" install Weblate==2.16
"${final_path}/venv/bin/pip" install pytz python-bidi PyYaML Babel pyuca pylibravatar pydns psycopg2
)
#=================================================
# Migrate databases
#=================================================