2017-04-07 23:28:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-08 18:06:56 +02:00
|
|
|
source _common.sh
|
2017-04-07 23:28:30 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2017-04-19 00:56:02 +02:00
|
|
|
secret=$(ynh_string_random)
|
2021-09-23 09:55:25 +02:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2017-12-27 13:16:05 +01:00
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_app_setting_set --key=$secret --value="$secret"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Installing dependencies..."
|
2021-03-25 20:05:16 +01:00
|
|
|
|
2021-03-25 20:22:23 +01:00
|
|
|
# Install Nodejs
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_nodejs_install
|
2017-07-08 18:06:56 +02:00
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Setting up source files..."
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-16 22:35:56 +01:00
|
|
|
git config --system --add safe.directory $install_dir
|
2023-03-16 22:28:23 +01:00
|
|
|
git clone -b $nodebb_version https://github.com/NodeBB/NodeBB.git "$install_dir" --quiet
|
2021-08-09 16:29:31 +02:00
|
|
|
|
2023-03-16 22:28:23 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-05-30 09:17:14 +02:00
|
|
|
|
2022-01-27 01:16:53 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Configuring NGINX web server..."
|
2022-01-27 01:16:53 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_config_add_nginx
|
2022-01-27 01:16:53 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
2021-08-31 15:55:02 +02:00
|
|
|
#=================================================
|
2021-09-01 16:00:35 +02:00
|
|
|
# CONFIGURE NODEBB
|
2021-08-31 15:55:02 +02:00
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Configuring the app..."
|
2021-08-31 15:55:02 +02:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_config_add --template="config.json" --destination="$install_dir/config.json"
|
2021-09-02 14:10:53 +02:00
|
|
|
|
2021-09-02 11:18:36 +02:00
|
|
|
setup="{
|
2022-01-27 01:16:53 +01:00
|
|
|
\"admin:username\": \"$admin\",
|
|
|
|
\"admin:password\": \"$password\",
|
|
|
|
\"admin:password:confirm\": \"$password\",
|
|
|
|
\"admin:email\": \"$email\"
|
|
|
|
}"
|
2021-09-02 10:59:18 +02:00
|
|
|
|
2023-03-16 22:28:23 +01:00
|
|
|
pushd $install_dir
|
2022-06-11 09:22:00 +02:00
|
|
|
npm install npm@latest --location=global
|
2024-06-24 14:41:58 +02:00
|
|
|
ynh_exec_as_app install lodash #--save
|
|
|
|
ynh_exec_as_app $install_dir/nodebb setup "${setup}" 2>/dev/null
|
2024-06-24 14:16:00 +02:00
|
|
|
|
2021-09-02 11:11:01 +02:00
|
|
|
popd
|
|
|
|
|
2023-03-16 22:28:23 +01:00
|
|
|
chmod 400 "$install_dir/config.json"
|
|
|
|
chown $app:$app "$install_dir/config.json"
|
2021-09-02 13:51:19 +02:00
|
|
|
|
2021-07-01 23:38:04 +02:00
|
|
|
#=================================================
|
2022-01-27 01:16:53 +01:00
|
|
|
# SETUP SYSTEMD
|
2018-08-22 23:56:03 +02:00
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Configuring $app's systemd service..."
|
2017-12-27 13:16:05 +01:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_config_add_systemd
|
2021-03-25 17:00:29 +01:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_config_add_logrotate
|
2021-09-24 19:01:04 +02:00
|
|
|
|
2021-09-01 18:36:40 +02:00
|
|
|
yunohost service add $app --description="Forum software" --log="/var/log/$app/$app.log"
|
2017-04-08 18:23:00 +02:00
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2022-01-27 01:16:53 +01:00
|
|
|
# START SYSTEMD SERVICE
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2022-01-27 01:16:53 +01:00
|
|
|
# Start a systemd service
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_systemctl --service=$app --action=restart --log_path="systemd"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-04-06 15:51:17 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Installation of $app completed"
|