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

57 lines
1.2 KiB
Text
Raw Normal View History

2015-05-02 16:36:51 +02:00
#!/bin/bash
2017-03-18 19:12:51 +01:00
set -eu
app=$YNH_APP_INSTANCE_NAME
2016-06-18 10:36:18 +02:00
# The main logic is to
# - install in a src-new folder
# - upgrade dependencies
# - if everything OK, rename src-new to src
2016-06-18 10:36:18 +02:00
# Installation paths
INSTALL_DIR=/opt/yunohost/ihatemoney
PIP=${INSTALL_DIR}/venv/bin/pip
NEW_REQUIREMENTS=${INSTALL_DIR}/src-new/requirements.txt
2016-06-18 10:36:18 +02:00
domain=$(ynh_app_setting_get "$app" domain)
# Source YunoHost helpers
. /usr/share/yunohost/helpers
# Source local utils
source _common.sh
# Optionaly upgrade arg to typed boolean form
is_public=$(ynh_app_setting_get "$app" is_public)
2016-06-18 10:36:18 +02:00
if [ $is_public = "No" ];
then
2016-06-18 10:36:18 +02:00
is_public=0
else
is_public=1
fi
2015-05-02 16:36:51 +02:00
2016-06-18 10:36:18 +02:00
ynh_app_setting_set "$app" is_public "$is_public"
2015-05-02 16:36:51 +02:00
# Upgrade code
fetch_and_extract ${INSTALL_DIR}/src-new/ ihatemoney
2015-05-02 16:36:51 +02:00
fix_permissions ${INSTALL_DIR}/src-new/
2016-06-18 10:36:18 +02:00
# Upgrade dependencies
sudo ${PIP} install -r ${NEW_REQUIREMENTS}
# Everything went ok ? Let's keep this code.
sudo rm -rf ${INSTALL_DIR}/src
sudo mv ${INSTALL_DIR}/src-new ${INSTALL_DIR}/src
# Re-create settings symlink
sudo ln -s /etc/ihatemoney/settings.py ${INSTALL_DIR}/src/budget/settings.py
2016-06-18 10:36:18 +02:00
2015-05-02 16:36:51 +02:00
# Settings are not very likely to change, and that script may be
# adapted to handle it in case.
# Restart backend
sudo supervisorctl restart budget