2016-04-29 16:32:48 +02:00
#!/bin/bash
2021-06-30 17:01:55 +02:00
source _common.sh
2017-07-18 13:03:45 +02:00
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2023-02-16 10:07:14 +01:00
password=$YNH_APP_ARG_PASSWORD
2022-06-26 20:30:44 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2021-06-30 17:01:55 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2017-07-21 10:54:41 +02:00
2024-08-29 15:01:46 +02:00
ynh_app_setting_set --key=password --value="$password"
ynh_app_setting_set --key=email --value=$email
2021-06-30 17:01:55 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Installing dependencies..."
2021-06-30 17:01:55 +02:00
2024-08-29 15:01:46 +02:00
ynh_nodejs_install
ynh_hide_warnings ynh_install_mongo
2021-06-30 17:01:55 +02:00
#=================================================
# CREATE A MONGODB DATABASE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Creating a MongoDB database..."
2021-06-30 17:01:55 +02:00
2023-02-16 10:07:14 +01:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
2024-08-29 15:01:46 +02:00
ynh_app_setting_set --key=db_name --value=$db_name
2021-06-30 17:01:55 +02:00
ynh_mongo_setup_db --db_user=$db_user --db_name=$db_name
2019-02-02 22:44:03 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Setting up source files..."
2017-07-24 15:48:53 +02:00
2021-06-30 17:01:55 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-03-30 16:01:11 +02:00
ynh_setup_source --dest_dir="$install_dir"
2017-07-21 14:35:08 +02:00
2022-07-08 21:12:24 +02:00
mkdir "/tmp/ufs"
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-07-08 21:12:24 +02:00
chown -R $app:$app "/tmp/ufs"
2016-04-29 16:32:48 +02:00
2021-06-30 17:01:55 +02:00
#=================================================
# SPECIFIC SETUP
2022-06-27 02:49:41 +02:00
#=================================================
# CONFIGURE MONGOD
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Configuring MongoDB..."
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
2021-07-24 23:31:43 +02:00
#=================================================
2023-08-27 07:48:19 +02:00
# SYSTEM CONFIGURATION
2021-07-24 23:31:43 +02:00
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Adding system configurations related to $app..."
2021-07-24 23:31:43 +02:00
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
2022-06-11 10:07:03 +02:00
# Create a dedicated systemd config
2024-08-29 15:01:46 +02:00
ynh_config_add_systemd
2021-07-24 23:31:43 +02:00
2021-11-13 23:17:56 +01:00
# Use logrotate to manage application 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-11-13 23:17:56 +01:00
2023-03-30 16:05:39 +02:00
#==============================================
# INSTALL ROCKETCHAT
#==============================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Building $app... (this will take some time and resources!)"
2017-07-18 16:14:16 +02:00
2023-03-30 16:05:39 +02: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
2023-03-30 16:05:39 +02:00
popd
2016-04-29 16:32:48 +02:00
2021-06-30 22:55:04 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Starting $app's systemd service..."
2021-06-30 22:55:04 +02:00
2024-08-29 15:01:46 +02:00
ynh_systemctl --service=$app --action="start" --log_path=systemd --wait_until="SERVER RUNNING"
2016-04-29 21:50:20 +02:00
2021-06-30 17:01:55 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2016-04-29 18:08:30 +02:00
2024-08-29 15:01:46 +02:00
ynh_script_progression "Installation of $app completed"