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

105 lines
4 KiB
Text
Raw Permalink Normal View History

2016-04-29 17:52:21 +02:00
#!/bin/bash
2017-07-18 13:03:45 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Loading installation settings..."
2016-04-29 17:52:21 +02:00
2024-08-29 15:01:46 +02:00
db_name=$(ynh_app_setting_get --key=db_name)
password=$(ynh_app_setting_get --key=password)
email=$(ynh_app_setting_get --key=email)
mongo_version=$(ynh_app_setting_get --key=mongo_version)
2022-06-26 20:30:44 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Stopping $app's systemd service..."
2022-06-26 20:30:44 +02:00
2024-08-29 15:01:46 +02:00
ynh_systemctl --service=$app --action="stop" --log_path="systemd"
2022-06-26 20:30:44 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Ensuring downward compatibility..."
2022-07-26 21:05:19 +02:00
# If mongo_version doesn't exist, create it
if [ -z "$mongo_version" ]; then
mongo_version="$(mongod --version | grep -oP 'db version v\K.{0,3}')"
2024-08-29 15:01:46 +02:00
ynh_app_setting_set --key=mongo_version --value=$mongo_version
2022-07-26 21:05:19 +02:00
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Upgrading source files..."
2024-05-13 00:13:28 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2024-08-29 15:01:46 +02:00
ynh_setup_source --dest_dir="$install_dir" --full_replace
2018-01-10 17:21:46 +01:00
2024-08-29 15:01:46 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:$app "$install_dir"
2022-06-26 20:30:44 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Upgrading dependencies..."
2022-06-26 20:30:44 +02:00
2024-08-29 15:01:46 +02:00
ynh_nodejs_install
ynh_hide_warnings ynh_install_mongo
2022-06-26 20:30:44 +02:00
2022-06-27 02:49:41 +02:00
#=================================================
# CONFIGURE MONGOD
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Configuring mongod..."
2022-06-27 02:49:41 +02:00
2024-08-29 15:01:46 +02:00
ynh_replace --match="# engine:" --replace=" engine: wiredTiger" --file="/etc/mongod.conf"
ynh_replace --match="#replication:" --replace="replication:\n replSetName: rs01" --file="/etc/mongod.conf"
2022-06-27 02:49:41 +02:00
2024-08-29 15:01:46 +02:00
ynh_hide_warnings systemctl enable mongod --quiet
ynh_systemctl --service=mongod --action=restart --log_path=/var/log/mongodb/mongod.log --wait_until="Waiting for connections"
2022-06-27 02:49:41 +02:00
2024-08-29 15:01:46 +02:00
if ynh_hide_warnings ynh_mongo_exec --command="printjson(rs.status())" | grep -q "no replset config has been received"; then
ynh_hide_warnings ynh_mongo_exec --command="printjson(rs.initiate())"
2022-06-28 22:52:55 +02:00
fi
2022-06-27 02:49:41 +02:00
#==============================================
# INSTALL ROCKETCHAT
#==============================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Building $app... (this will take some time and resources!)"
2023-02-16 09:55:28 +01:00
pushd $install_dir/programs/server
2024-08-29 15:01:46 +02:00
ynh_hide_warnings ynh_exec_as_app node_load_PATH yarn install --unsafe-perm
popd
#=================================================
2023-08-27 07:48:19 +02:00
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Upgrading system configurations related to $app..."
2023-03-30 16:05:39 +02:00
# Create a dedicated NGINX config
2024-08-29 15:01:46 +02:00
ynh_config_add_nginx
2023-03-30 16:05:39 +02:00
# Create a dedicated systemd config
2024-08-29 15:01:46 +02:00
ynh_config_add_systemd
2021-11-14 09:52:08 +01:00
# Use logrotate to manage app-specific logfile(s)
2024-08-29 15:01:46 +02:00
ynh_config_add_logrotate
2023-08-27 07:48:19 +02:00
yunohost service add $app --description="Team collaboration communication platform" --log="/var/log/$app/$app.log"
#=================================================
2021-06-30 19:03:49 +02:00
# START SYSTEMD SERVICE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Starting $app's systemd service..."
2024-08-29 15:01:46 +02:00
ynh_systemctl --service=$app --action="start" --log_path="systemd" --wait_until="SERVER RUNNING"
#=================================================
# END OF SCRIPT
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Upgrade of $app completed"