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

123 lines
4.5 KiB
Text
Raw Normal View History

2018-09-25 19:03:30 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
# manage script failure
2020-08-13 20:50:44 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
}
2018-09-25 19:03:30 +02:00
ynh_abort_if_errors
# retrieve arguments
app=$YNH_APP_INSTANCE_NAME
2020-11-16 15:10:12 +01:00
domain=$(ynh_app_setting_get --app="$app" --key=domain)
port=$(ynh_app_setting_get --app="$app" --key=port)
2020-08-12 22:22:59 +02:00
2018-09-25 19:03:30 +02:00
# definie useful vars
2021-11-27 21:27:01 +01:00
if [ -z $(ynh_app_setting_get --app="$app" --key=final_path) ]; then
2021-12-07 17:29:01 +01:00
final_path="/var/www/$app"
2021-11-27 21:27:01 +01:00
data_path="/home/yunohost.app/$app"
log_file="/var/log/$app/$app.log"
path_url="/"
ynh_app_setting_set --app="$app" --key=final_path --value="$final_path"
ynh_app_setting_set --app="$app" --key=data_path --value="$data_path"
ynh_app_setting_set --app="$app" --key=log_file --value="$log_file"
ynh_app_setting_set --app="$app" --key=path_url --value="$path_url"
else
final_path=$(ynh_app_setting_get --app="$app" --key=final_path)
data_path=$(ynh_app_setting_get --app="$app" --key=data_path)
log_file=$(ynh_app_setting_get --app="$app" --key=log_file)
path_url=$(ynh_app_setting_get --app="$app" --key=path_url)
python=$(ynh_app_setting_get --app="$app" --key=python)
fi
2018-09-25 19:03:30 +02:00
# use prior backup and restore on error only if backup feature exists on installed instance
2020-08-13 20:50:44 +02:00
ynh_script_progression --message="Creating backup in case of failure..."
2018-09-25 19:03:30 +02:00
if [ -f "/etc/yunohost/apps/$app/scripts/backup" ] ; then
ynh_backup_before_upgrade # Backup the current version of the app
ynh_clean_setup () {
ynh_restore_upgradebackup
2020-08-13 20:50:44 +02:00
ynh_clean_check_starting
2018-09-25 19:03:30 +02:00
}
fi
2020-11-14 14:10:51 +01:00
# build (if needed) & install Pyhton
2021-11-24 22:23:50 +01:00
ynh_script_progression --message="Installing dependencies..."
2021-01-18 21:12:47 +01:00
myynh_install_dependencies --python="$PY_REQUIRED_VERSION"
2018-09-25 19:03:30 +02:00
# stop systemd service
2020-08-13 20:50:44 +02:00
ynh_script_progression --message="Stoping service..."
2021-11-24 06:53:48 +01:00
ynh_systemd_action --service_name="$app" --action=stop --line_match="Stopped Home Assistant" --log_path="$log_file" --timeout=300
2018-09-25 19:03:30 +02:00
2021-11-24 22:23:50 +01:00
# migrate to new app architecture
ynh_script_progression --message="If needed, migrating to new app architecture..."
2021-12-07 17:29:01 +01:00
if [ ! -d "$final_path" ]; then
# move $final_path to new directory
mv "/opt/yunohost/$app" "$final_path"
fi
2021-11-24 22:23:50 +01:00
if [ ! -d "$data_path" ]; then
2021-12-07 08:44:15 +01:00
# remove pip cache
ynh_secure_remove --file="/home/homeassistant/.cache"
2021-11-24 22:23:50 +01:00
# move $data_path to new directory
mv "/""home""/$app" "$data_path"
2021-12-06 22:22:11 +01:00
ynh_replace_string --match_string="/home/homeassistant/.homeassistant" --replace_string="$data_path" --target_file="$data_path/configuration.yaml"
2021-11-24 22:23:50 +01:00
fi
if [ ! -f "$log_file" ]; then
# create a directory with its log file
myynh_create_dir "$(dirname "$log_file")"
touch "$log_file"
fi
if [ -f "/etc/systemd/system/$app@$app.service" ]; then
# remove old systemd service
if ynh_exec_warn_less yunohost service status "$app@$app" >/dev/null ; then
yunohost service remove "$app@$app"
fi
ynh_remove_systemd_config --service="$app@$app"
fi
2020-08-13 20:50:44 +02:00
# installation in a virtual environment
ynh_script_progression --message="Installing Home Assistant in a virtual environment..."
2021-12-07 08:44:15 +01:00
ynh_exec_fully_quiet myynh_install_homeassistant
2020-11-14 14:10:51 +01:00
2020-08-27 21:06:09 +02:00
# update script in bin
2021-01-05 15:18:56 +01:00
ynh_script_progression --message="Updating YunoHost script used by homeassitant..."
2021-12-06 22:22:11 +01:00
cp -r "../conf/homeassistant_conf_files/bin/." "$data_path/bin/"
2018-09-25 19:03:30 +02:00
2020-08-13 20:50:44 +02:00
# setup up systemd service
ynh_script_progression --message="Adding the dedicated service..."
2021-11-28 14:47:09 +01:00
ynh_add_systemd_config
2021-11-20 19:05:14 +01:00
2021-11-28 15:09:32 +01:00
# grant sudo permissions to the user to manage his own systemd service
ynh_script_progression --message="Creating dedicated user, rights and folders..."
ynh_add_config --template="../conf/sudoers" --destination="/etc/sudoers.d/$app"
2021-11-20 19:05:14 +01:00
# add service in admin panel
2021-11-23 22:27:54 +01:00
yunohost service add "$app" --log "$log_file" --description "Home Assistant server" --needs_exposed_ports $port
2018-09-25 19:03:30 +02:00
2021-12-07 20:47:31 +01:00
# set permissions
myynh_set_permissions
2020-08-13 20:50:44 +02:00
# start systemd service
ynh_script_progression --message="Starting the Home Assistant server..."
2021-11-20 19:05:14 +01:00
systemctl daemon-reload
2021-11-24 06:53:48 +01:00
ynh_systemd_action --service_name="$app" --action=start --line_match="Home Assistant initialized" --log_path="$log_file" --timeout=3600
2021-11-20 19:05:14 +01:00
2020-08-14 14:26:27 +02:00
# remove --verbose from service
2021-11-21 21:25:39 +01:00
ynh_replace_string --match_string=" --verbose" --replace_string="" --target_file="/etc/systemd/system/$app.service"
ynh_store_file_checksum --file="/etc/systemd/system/$app.service"
2020-08-14 14:26:27 +02:00
systemctl daemon-reload
2021-11-21 21:25:39 +01:00
ynh_systemd_action --service_name="$app" --action=restart
2018-09-25 19:03:30 +02:00
2021-02-20 09:53:53 +01:00
# enable logrotate
2021-11-23 22:27:54 +01:00
ynh_use_logrotate --logfile="$log_file" --nonappend
2021-02-20 09:53:53 +01:00
2018-09-25 19:03:30 +02:00
# create a dedicated nginx config
2020-08-13 20:50:44 +02:00
ynh_script_progression --message="Configuring nginx web server..."
2018-09-25 19:03:30 +02:00
ynh_add_nginx_config
2021-11-20 19:05:14 +01:00
2018-09-25 19:03:30 +02:00
# reload nginx
2020-08-13 20:50:44 +02:00
ynh_systemd_action --service_name=nginx --action=reload
ynh_script_progression --message="Installation of $app completed" --last