2021-03-19 04:09:26 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-03-19 04:09:26 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-03-21 05:17:45 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
guacd_port=$(ynh_app_setting_get --app=$app --key=guacd_port)
2021-03-19 04:09:26 +01:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2021-03-21 05:17:45 +01:00
db_user=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
2021-03-19 04:09:26 +01:00
#=================================================
# CHECK VERSION
#=================================================
### This helper will compare the version of the currently installed app and the version of the upstream package.
### $upgrade_type can have 2 different values
### - UPGRADE_APP if the upstream app version has changed
### - UPGRADE_PACKAGE if only the YunoHost package has changed
### ynh_check_app_version_changed will stop the upgrade if the app is up to date.
### UPGRADE_APP should be used to upgrade the core app only if there's an upgrade to do.
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-03-19 04:09:26 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# 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
#=================================================
2021-03-21 05:17:45 +01:00
# STOP SYSTEMD SERVICES
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Stopping systemd services..." --weight=1
2021-03-19 04:09:26 +01:00
2021-03-21 05:17:45 +01:00
ynh_systemd_action --service_name="$app-guacd" --action="stop" --log_path="/var/log/$app/guacd.log"
ynh_systemd_action --service_name="$app-tomcat" --action="stop" --log_path="/var/log/$app/tomcat.log"
2021-03-19 04:09:26 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-03-21 05:17:45 +01:00
if [ "$upgrade_type" == "UPGRADE_APP" ]; then
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-03-19 04:09:26 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2021-03-21 05:17:45 +01:00
ynh_setup_source --source_id="server" --dest_dir="$final_path/.guacd-src"
tomcat_guac_dir="$path_url"
if [ "$path_url" == "/" -o -z "$path_url" ]; then
tomcat_guac_dir="ROOT"
fi
ynh_setup_source --source_id="client" --dest_dir="$final_path/var/lib/tomcat9/webapps/$tomcat_guac_dir"
ynh_setup_source --source_id="auth-ldap" --dest_dir="$final_path/etc/guacamole/extensions/ldap"
mv "$final_path/etc/guacamole/extensions/ldap/guacamole-auth-ldap-1.3.0.jar" "$final_path/etc/guacamole/extensions/guacamole-auth-ldap.jar"
ynh_secure_remove --file="$final_path/etc/guacamole/extensions/ldap"
ynh_setup_source --source_id="auth-header" --dest_dir="$final_path/etc/guacamole/extensions/header"
mv "$final_path/etc/guacamole/extensions/header/guacamole-auth-header-1.2.0.jar" "$final_path/etc/guacamole/extensions/guacamole-auth-header.jar"
ynh_secure_remove --file="$final_path/etc/guacamole/extensions/header"
ynh_setup_source --source_id="auth-jdbc" --dest_dir="$final_path/etc/guacamole/extensions/jdbc"
mv "$final_path/etc/guacamole/extensions/jdbc/mysql/guacamole-auth-jdbc-mysql-1.3.0.jar" "$final_path/etc/guacamole/extensions/guacamole-auth-jdbc-mysql.jar"
mv "$final_path/etc/guacamole/extensions/jdbc/mysql/schema" "$final_path/etc/guacamole/extensions/mysql-schema"
ynh_secure_remove --file="$final_path/etc/guacamole/extensions/jdbc"
ynh_setup_source --source_id="mariadb-java-client" --dest_dir="$final_path/etc/guacamole/lib/"
mv "$final_path/etc/guacamole/lib/mariadb-java-client-2.7.2.jar" "$final_path/etc/guacamole/lib/mariadb-java-client.jar"
ynh_setup_source --source_id="tomcat9_deb" --dest_dir="$final_path/"
pushd "$final_path" || ynh_die
ar x "$final_path/tomcat9_9.0.31-1~deb10u3_all.deb" "data.tar.xz"
popd || ynh_die
ynh_secure_remove --file="$final_path/tomcat9_9.0.31-1~deb10u3_all.deb"
mkdir -p "$final_path/tomcat9-data"
tar -C "$final_path/tomcat9-data" -xJf "$final_path/data.tar.xz"
cp -r "$final_path/tomcat9-data/usr/share/tomcat9/etc" -T "$final_path/etc/tomcat9/"
cp -r "$final_path/tomcat9-data/etc/tomcat9/" -T "$final_path/etc/tomcat9/"
ynh_secure_remove --file="$final_path/data.tar.xz"
ynh_secure_remove --file="$final_path/tomcat9-data"
2021-03-19 04:09:26 +01:00
fi
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2021-03-19 04:09:26 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
# Guacamole depends on Apache Tomcat.
# But installing Tomcat from the Debian repos automatically enables and starts it.
# So we stop and disable it, unless Tomcat was already enabled or started by the user beforehand
tomcat_enabled=""
tomcat_active=""
if [ "$(systemctl cat tomcat9 --quiet)" ]; then
if (systemctl is-enabled tomcat9 --quiet); then
tomcat_enabled=1
fi
if (systemctl is-active tomcat9 --quiet); then
tomcat_active=1
fi
fi
2021-03-19 04:09:26 +01:00
ynh_install_app_dependencies $pkg_dependencies
2021-03-21 05:17:45 +01:00
if [ ! $tomcat_enabled ]; then
systemctl disable tomcat9 --quiet
fi
if [ ! $tomcat_active ]; then
systemctl stop tomcat9 --quiet
fi
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# CREATE DEDICATED USERS
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-03-19 04:09:26 +01:00
2021-03-21 05:17:45 +01:00
# Create dedicated users (if not existing)
ynh_system_user_create --username="$app-guacd"
ynh_system_user_create --username="$app-tomcat"
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# SPECIFIC UPGRADE
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# COMPILE GUACD
#=================================================
ynh_script_progression --message="Compiling guacd..." --weight=30
2021-03-19 04:09:26 +01:00
2021-03-21 05:17:45 +01:00
pushd "$final_path/.guacd-src" || ynh_die
./configure --enable-allow-freerdp-snapshots --prefix="$final_path" --datadir="$final_path" --with-freerdp-plugin-dir="$final_path/lib/x86_64-linux-gnu/freerdp2"
make
make install
popd || ynh_die
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# SETUP TOMCAT
#=================================================
mkdir -p "$final_path/etc/"
2021-03-24 03:58:16 +01:00
ln -s -f "$final_path/etc/tomcat9" "$final_path/var/lib/tomcat9/conf"
ln -s -f "/var/log/$app/tomcat/" "$final_path/var/lib/tomcat9/logs"
ln -s -f "/var/cache/$app-tomcat9" "$final_path/var/lib/tomcat9/work"
2021-03-21 05:17:45 +01:00
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# CREATE LOG DIRS
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
mkdir -p "/var/log/$app/tomcat/" "/var/log/$app/guacd/" "/var/log/$app/tomcat/"
2021-03-19 04:09:26 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-03-19 04:09:26 +01:00
2021-03-21 05:17:45 +01:00
# Create dedicated systemd configs
ynh_add_systemd_config --service="$app-guacd" --template="guacd.service" -v guacd_port
ynh_add_systemd_config --service="$app-tomcat" --template="tomcat.service"
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# UPDATE CONFIG FILES
2021-03-19 04:09:26 +01:00
#=================================================
### Same as during install
###
### The file will automatically be backed-up if it's found to be manually modified (because
### ynh_add_config keeps track of the file's checksum)
2021-03-21 05:17:45 +01:00
ynh_add_config --template="guacamole.properties" --destination="$final_path/etc/guacamole/guacamole.properties"
2021-03-19 04:09:26 +01:00
### For more complex cases where you want to replace stuff using regexes,
### you shoud rely on ynh_replace_string (which is basically a wrapper for sed)
### When doing so, you also need to manually call ynh_store_file_checksum
###
### ynh_replace_string --match_string="match_string" --replace_string="replace_string" --target_file="$final_path/some_config_file"
### ynh_store_file_checksum --file="$final_path/some_config_file"
2021-03-21 05:17:45 +01:00
ynh_replace_string --match_string="8080" --replace_string="$port" --target_file="$final_path/etc/tomcat9/server.xml"
2021-03-19 04:09:26 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
2021-03-22 21:39:41 +01:00
chown -R root:root $final_path
chmod -R o-rwx $final_path
setfacl -n -R -m user:$app-guacd:rx -m default:user:$app-guacd:rx $final_path
setfacl -n -R -m user:$app-tomcat:rx -m default:user:$app-tomcat:rx $final_path
chown -R $app-guacd:$app-guacd "/var/log/$app/guacd/"
chown -R $app-tomcat:$app-tomcat "/var/log/$app/tomcat/"
chown -R root:$app-tomcat "$final_path/etc/tomcat9/" "$final_path/etc/guacamole/"
2021-03-21 05:17:45 +01:00
chown -R "$app-tomcat":"$app-tomcat" "$final_path/var/lib/tomcat9/webapps"
2021-03-22 21:39:41 +01:00
setfacl -n -R -m user:$app-guacd:- -m default:user:$app-guacd:- "$final_path/var/lib/tomcat9/" "$final_path/etc/guacamole/" "$final_path/etc/tomcat9/"
2021-03-19 04:09:26 +01:00
#=================================================
# SETUP LOGROTATE
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
2021-03-19 04:09:26 +01:00
# Use logrotate to manage app-specific logfile(s)
2021-03-21 05:17:45 +01:00
ynh_use_logrotate --logfile="/var/log/$app/tomcat/catalina.out" --specific_user="$app-tomcat/$app-tomcat" --non-append
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# INTEGRATE SERVICES IN YUNOHOST
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Integrating services in YunoHost..." --weight=1
2021-03-19 04:09:26 +01:00
2021-03-21 05:17:45 +01:00
yunohost service add "$app-guacd" --description="Guacamole server" --log="/var/log/$app/guacd.log"
yunohost service add "$app-tomcat" --description="Guacamole client" --log="/var/log/$app/tomcat.log"
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
# START SYSTEMD SERVICES
2021-03-19 04:09:26 +01:00
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Starting systemd services..." --weight=1
2021-03-19 04:09:26 +01:00
2021-03-21 05:17:45 +01:00
ynh_systemd_action --service_name="$app-guacd" --action="start" --log_path="/var/log/$app/guacd.log"
ynh_systemd_action --service_name="$app-tomcat" --action="start" --log_path="/var/log/$app/tomcat.log"
2021-03-19 04:09:26 +01:00
#=================================================
# UPGRADE FAIL2BAN
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Reconfiguring Fail2Ban..." --weight=1
2021-03-19 04:09:26 +01:00
# Create a dedicated Fail2Ban config
2021-03-21 05:17:45 +01:00
ynh_add_fail2ban_config --logpath="/var/log/syslog" --failregex='o.a.g.r.auth.AuthenticationService - Authentication attempt from <HOST> for user "[^"]*" failed\.$'
2021-03-19 04:09:26 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-03-19 04:09:26 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-03-21 05:17:45 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last