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

160 lines
5.3 KiB
Text
Raw Normal View History

2021-03-01 14:53:57 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --time --weight=1
app=$YNH_APP_INSTANCE_NAME
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --time --weight=1
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --time --weight=1
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2021-03-02 14:58:33 +01:00
ynh_secure_remove --file="$go_tmp"
ynh_secure_remove --file="$lxd_tmp"
2021-03-01 14:53:57 +01:00
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --time --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
2021-03-02 14:58:33 +01:00
# UPGRADE DEPENDENCIES
2021-03-01 14:53:57 +01:00
#=================================================
2021-03-02 14:58:33 +01:00
ynh_script_progression --message="Upgrading dependencies..." --time --weight=1
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
ynh_install_app_dependencies $pkg_dependencies
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
ynh_script_progression --message="Setting up source files..." --time --weight=1
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
# Download, check integrity, uncompress and patch the source from app.src
go_tmp=$(mktemp -d)
ynh_setup_source --dest_dir="$go_tmp" --source_id="go.$(ynh_detect_arch)"
export PATH=$go_tmp/bin:$PATH
lxd_tmp=$(mktemp -d)
ynh_setup_source --dest_dir="$lxd_tmp" --source_id="lxd"
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
export GOPATH=${lxd_tmp}/_dist
2021-03-01 14:53:57 +01:00
#=================================================
2021-03-02 14:58:33 +01:00
# BUILD FROM SOURCES
2021-03-01 14:53:57 +01:00
#=================================================
2021-03-02 14:58:33 +01:00
ynh_script_progression --message="Building lxd from sources..." --time --weight=1
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
pushd ${lxd_tmp}
make deps
export CGO_CFLAGS="-I${GOPATH}/deps/raft/include/ -I${GOPATH}/deps/dqlite/include/"
export CGO_LDFLAGS="-L${GOPATH}/deps/raft/.libs -L${GOPATH}/deps/dqlite/.libs/"
export LD_LIBRARY_PATH="${GOPATH}/deps/raft/.libs/:${GOPATH}/deps/dqlite/.libs/"
export CGO_LDFLAGS_ALLOW="-Wl,-wrap,pthread_create"
cd $GOPATH/src/github.com/lxc/lxd
# https://github.com/golang/go/issues/31997#issuecomment-782864390
go env -w GO111MODULE=auto
make
mkdir -p /usr/local/lib/$app
mkdir -p /var/log/$app
cp -a ${GOPATH}/deps/{raft,dqlite}/.libs/lib*.so* /usr/local/lib/$app/
cp ${GOPATH}/bin/{lxc,lxd,lxc-to-lxd,lxd-p2c} /usr/local/bin
popd
ynh_secure_remove --file="$go_tmp"
ynh_secure_remove --file="$lxd_tmp"
2021-03-01 14:53:57 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..." --time --weight=1
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app
#=================================================
# SPECIFIC UPGRADE
#=================================================
# SETUP SYSTEMD
#=================================================
2021-03-02 14:58:33 +01:00
ynh_script_progression --message="Configuring a systemd service..." --time --weight=1
2021-03-01 14:53:57 +01:00
# Create a dedicated systemd config
2021-03-02 14:58:33 +01:00
ynh_add_systemd_socket_config
2021-03-01 14:53:57 +01:00
ynh_add_systemd_config
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2021-03-02 14:58:33 +01:00
ynh_backup_if_checksum_is_different --file="/etc/dnsmasq.d/lxd"
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
echo "bind-interfaces
except-interface=lxdbr0" > /etc/dnsmasq.d/lxd
systemctl restart dnsmasq
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
ynh_store_file_checksum --file="/etc/dnsmasq.d/lxd"
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
ynh_backup_if_checksum_is_different --file="/etc/ld.so.conf.d/$app.conf"
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
echo "/usr/local/lib/$app/" > /etc/ld.so.conf.d/$app.conf
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
ynh_store_file_checksum --file="/etc/ld.so.conf.d/$app.conf"
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
ldconfig
echo "root:1000000:65536 # Added by lxd#" | tee -a /etc/subuid /etc/subgid
2021-03-01 14:53:57 +01:00
2021-03-02 14:58:33 +01:00
#=================================================
# GENERIC FINALIZATION
2021-03-01 14:53:57 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --time --weight=1
2021-03-02 14:58:33 +01:00
yunohost service add $app --log="/var/log/$app/$app.log" --needs_exposed_ports=67
2021-03-01 14:53:57 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --time --weight=1
2021-03-02 14:58:33 +01:00
# Start a systemd service
2021-03-01 14:53:57 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --time --last