2016-04-29 16:32:48 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-18 13:03:45 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
source _common.sh
|
2017-07-18 13:03:45 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_clean_setup () {
|
2022-06-26 20:30:44 +02:00
|
|
|
ynh_clean_check_starting
|
2021-06-30 17:01:55 +02:00
|
|
|
}
|
2017-07-18 13:03:45 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_abort_if_errors
|
2017-07-18 13:03:45 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
#REMOVEME? path=$YNH_APP_ARG_PATH
|
|
|
|
#REMOVEME? is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
#REMOVEME? admin=$YNH_APP_ARG_ADMIN
|
|
|
|
#REMOVEME? password=$YNH_APP_ARG_PASSWORD
|
2017-07-18 13:03:45 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
|
2017-07-18 13:03:45 +02:00
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
|
|
|
|
2019-02-02 22:44:03 +01:00
|
|
|
#=================================================
|
2021-06-30 17:01:55 +02:00
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
2019-02-02 22:44:03 +01:00
|
|
|
#=================================================
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2019-02-02 22:44:03 +01:00
|
|
|
|
2022-06-26 20:53:36 +02:00
|
|
|
# Check machine architecture (in particular, we don't support ARM and 32bit machines)
|
2023-02-16 08:33:34 +01:00
|
|
|
if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armel" ] || [ $YNH_ARCH == "armhf" ] || [ $YNH_ARCH == "arm64" ]
|
2022-06-26 20:53:36 +02:00
|
|
|
then
|
|
|
|
ynh_die --message="Sorry, but this app can only be installed on a x86, 64 bits machine :("
|
|
|
|
fi
|
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? install_dir=/var/www/$app
|
|
|
|
#REMOVEME? test ! -e "$install_dir" || ynh_die --message="This path already contains a folder"
|
2019-02-02 22:44:03 +01:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
# Register (book) web path
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_webpath_register --app=$app --domain=$domain --path=$path
|
2017-07-19 11:13:17 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Storing installation settings..." --weight=2
|
2017-07-21 10:54:41 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=path --value=$path
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=admin --value=$admin
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=password --value="$password"
|
2021-11-19 13:47:53 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=email --value=$email
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Finding an available port..." --weight=2
|
2018-05-05 11:51:14 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
# Find an available port
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? port=$(ynh_find_port --port=3000)
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=port --value=$port
|
2018-05-05 11:51:14 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Installing dependencies..." --weight=48
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
2021-06-30 17:01:55 +02:00
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2022-07-26 21:08:00 +02:00
|
|
|
ynh_exec_warn_less ynh_install_mongo --mongo_version=$mongo_version
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_exec_warn_less ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
|
2022-06-26 20:30:44 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Configuring system user..." --weight=3
|
2022-06-26 20:30:44 +02:00
|
|
|
|
|
|
|
# Create a system user
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE A MONGODB DATABASE
|
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Creating a MongoDB database..." --weight=5
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
#REMOVEME? db_user=$db_name
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --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
|
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=10
|
2017-07-24 15:48:53 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
|
2021-06-30 17:01:55 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-02-16 09:55:28 +01: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"
|
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
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
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
|
2016-04-29 16:32:48 +02:00
|
|
|
|
2022-04-21 09:12:56 +02:00
|
|
|
# Create a dedicated NGINX config
|
2021-06-30 17:01:55 +02:00
|
|
|
ynh_add_nginx_config
|
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
|
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Configuring MongoDB..." --weight=10
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_replace_string --match_string="# engine:" --replace_string=" engine: wiredTiger" --target_file="/etc/mongod.conf"
|
|
|
|
ynh_replace_string --match_string="#replication:" --replace_string="replication:\n replSetName: rs01" --target_file="/etc/mongod.conf"
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_exec_warn_less systemctl enable mongod --quiet
|
|
|
|
ynh_systemd_action --service_name=mongod --action=restart --log_path=/var/log/mongodb/mongod.log --line_match="Waiting for connections"
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2022-06-28 22:52:55 +02:00
|
|
|
if ynh_exec_warn_less ynh_mongo_exec --command="printjson(rs.status())" | grep -q "no replset config has been received"; then
|
|
|
|
ynh_exec_warn_less ynh_mongo_exec --command="printjson(rs.initiate())" --eval
|
|
|
|
fi
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#==============================================
|
|
|
|
# INSTALL ROCKETCHAT
|
|
|
|
#==============================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Building $app... (this will take some time and resources!)" --weight=29
|
2017-07-21 10:54:41 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
pushd $install_dir/programs/server
|
2022-06-27 02:49:41 +02:00
|
|
|
ynh_use_nodejs
|
2022-07-11 08:26:57 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --unsafe-perm
|
2021-06-30 17:01:55 +02:00
|
|
|
popd
|
|
|
|
|
2021-07-24 23:31:43 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
|
|
|
|
2022-06-11 10:07:03 +02:00
|
|
|
# Create a dedicated systemd config
|
2021-07-24 23:31:43 +02:00
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2021-11-13 23:17:56 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring log rotation..." --weight=1
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2022-07-03 14:06:20 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2017-07-18 16:14:16 +02:00
|
|
|
|
2022-06-27 02:49:41 +02:00
|
|
|
yunohost service add $app --description="Team collaboration communication platform"
|
2016-04-29 16:32:48 +02:00
|
|
|
|
2021-06-30 22:55:04 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=29
|
2021-06-30 22:55:04 +02:00
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="SERVER RUNNING"
|
2016-04-29 21:50:20 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Configuring permissions..." --weight=1
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
# Make app public if necessary
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? if [ $is_public -eq 1 ]
|
2021-06-30 17:01:55 +02:00
|
|
|
then
|
2022-06-26 20:30:44 +02:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_permission_update --permission="main" --add="visitors"
|
2021-06-30 17:01:55 +02:00
|
|
|
fi
|
2016-04-29 18:08:30 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2016-04-29 18:08:30 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|