2015-10-21 13:03:49 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
source _common.sh
|
2017-02-04 19:20:51 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2021-01-13 11:31:12 +01:00
|
|
|
|
|
|
|
if [ "$version" = "Enterprise" ]; then
|
|
|
|
# Get Enterprise binary path
|
2023-09-11 21:36:20 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --source_id="enterprise"
|
2021-01-13 11:31:12 +01:00
|
|
|
elif [ "$version" = "Team" ]; then
|
|
|
|
# Get Team binary path
|
2023-09-11 21:36:20 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --source_id="main"
|
2021-01-13 11:31:12 +01:00
|
|
|
fi
|
2016-05-23 07:41:12 +02:00
|
|
|
|
2023-09-11 21:36:20 +02:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2015-10-31 18:00:13 +01:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# EDIT MATTERMOST CONFIG
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Modifying a config file..." --weight=3
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-03-17 20:59:57 +01:00
|
|
|
smtp_user_pwd=$(ynh_string_random --length=24)
|
2023-09-11 21:36:20 +02:00
|
|
|
url=https://$domain$path
|
2021-01-11 23:46:48 +01:00
|
|
|
|
2024-06-14 08:57:32 +02:00
|
|
|
ynh_add_config --template="config.json" --destination="$install_dir/config/config.json"
|
2015-10-21 14:46:47 +02:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2023-09-11 21:36:20 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2023-09-11 21:36:20 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Create a dedicated NGINX config
|
2017-10-10 14:26:45 +02:00
|
|
|
ynh_add_nginx_config
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Create a dedicated systemd config
|
2018-02-16 05:13:55 +01:00
|
|
|
ynh_add_systemd_config
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
yunohost service add $app --description="Collaboration platform built for developers" --log="/var/log/$app/$app.log"
|
2015-10-21 14:33:49 +02:00
|
|
|
|
2023-09-11 21:36:20 +02:00
|
|
|
# Create log directory
|
|
|
|
mkdir -p /var/log/$app
|
|
|
|
chown $app -R "/var/log/$app"
|
|
|
|
|
|
|
|
# Setup logrotate
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# START SYSTEMD SERVICE
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=2
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Start a systemd service
|
2021-03-17 20:59:57 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path=systemd --line_match="Started Mattermost"
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2021-10-30 14:32:53 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE ADMIN AND FIRST TEAM
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Create the first administrator and team..." --weight=1
|
|
|
|
|
|
|
|
team_name=$(echo "$team_display_name" | iconv -f utf8 -t ascii//TRANSLIT//IGNORE | sed -e 's/[^[:alnum:]]/-/g' | tr -s '-' | tr A-Z a-z)
|
2023-09-11 21:36:20 +02:00
|
|
|
bin_mmctl="$install_dir/bin/mmctl"
|
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2021-10-30 14:32:53 +02:00
|
|
|
|
2023-09-11 21:36:20 +02:00
|
|
|
export MMCTL_LOCAL=true
|
|
|
|
export MMCTL_LOCAL_SOCKET_PATH="/var/run/${app}/mattermost_local.socket"
|
2021-11-05 16:43:05 +01:00
|
|
|
|
2023-09-11 21:36:20 +02:00
|
|
|
ynh_exec_warn_less sudo --preserve-env -u $app "$bin_mmctl" user create --username "$admin" --email "$email" --password "$password" --locale "$language" --email-verified --system-admin
|
|
|
|
ynh_exec_warn_less sudo --preserve-env -u $app "$bin_mmctl" team create --name "$team_name" --display_name "$team_display_name" --email "$email"
|
|
|
|
ynh_exec_warn_less sudo --preserve-env -u $app "$bin_mmctl" team users add "$team_name" "$admin"
|
2021-10-30 14:32:53 +02:00
|
|
|
|
2021-11-05 16:43:05 +01:00
|
|
|
# Disable mmctl passwordless access
|
2023-09-11 21:36:20 +02:00
|
|
|
ynh_replace_string '"EnableLocalMode": true' '"EnableLocalMode": false' "$install_dir/config/config.json"
|
2021-10-30 14:32:53 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=restart --log_path=systemd --line_match="Started Mattermost"
|
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2018-02-16 07:25:18 +01:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|