1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nodebb_ynh.git synced 2024-09-03 19:46:29 +02:00
nodebb_ynh/scripts/install

117 lines
3.9 KiB
Text
Raw Normal View History

2017-04-07 23:28:30 +02:00
#!/bin/bash
#=================================================
2018-01-28 15:58:21 +01:00
# GENERIC START
2017-04-07 23:28:30 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
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
#=================================================
2021-03-25 20:09:22 +01:00
ynh_app_setting_set --app=$app --key=$secret --value="$secret"
2017-04-07 23:28:30 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2023-03-16 22:34:12 +01:00
ynh_script_progression --message="Installing dependencies..." --weight=1
2021-03-25 20:05:16 +01:00
2021-03-25 20:22:23 +01:00
# Install Nodejs
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2017-04-07 23:28:30 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-04-06 15:51:17 +02:00
ynh_script_progression --message="Setting up source files..." --weight=2
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
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# 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
#=================================================
2022-06-11 09:06:34 +02:00
ynh_script_progression --message="Configuring the app..." --weight=2
2021-08-31 15:55:02 +02:00
2023-03-16 22:28:23 +01:00
ynh_add_config --template="../conf/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-01-27 01:16:53 +01:00
ynh_use_nodejs
2022-06-11 09:22:00 +02:00
npm install npm@latest --location=global
2022-02-10 15:52:17 +01:00
ynh_exec_as $app env $ynh_node_load_PATH $ynh_npm install lodash --save
2023-03-16 22:28:23 +01:00
ynh_exec_as $app env $ynh_node_load_PATH $install_dir/nodebb setup "${setup}" 2>/dev/null
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
#=================================================
2021-04-06 15:51:17 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2017-12-27 13:16:05 +01:00
2022-01-27 01:16:53 +01:00
# Create a dedicated systemd config
2021-05-30 09:34:35 +02:00
ynh_add_systemd_config
2021-03-25 17:00:29 +01:00
2021-09-24 19:01:04 +02:00
#=================================================
2022-01-27 01:16:53 +01:00
# GENERIC FINALIZATION
2021-09-24 19:01:04 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Configuring log rotation..." --weight=1
2022-01-27 01:16:53 +01:00
# Use logrotate to manage application logfile(s)
2021-09-24 19:01:04 +02:00
ynh_use_logrotate
2017-04-18 18:17:30 +02:00
#=================================================
2021-03-25 17:00:29 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2017-07-08 19:22:54 +02:00
#=================================================
2021-03-25 17:00:29 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2017-07-08 19:22:54 +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
#=================================================
2021-04-06 15:51:17 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2017-04-07 23:28:30 +02:00
2022-01-27 01:16:53 +01:00
# Start a systemd service
2021-08-31 16:08:23 +02:00
ynh_systemd_action --service_name=$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
#=================================================
ynh_script_progression --message="Installation of $app completed" --last