2019-01-28 19:15:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2023-08-15 12:31:35 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2021-03-23 20:16:47 +01:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2019-01-29 03:27:53 +01:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2021-04-10 01:14:00 +02:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2023-08-15 12:31:35 +02:00
|
|
|
# SETUP SYSTEMD
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2023-08-15 12:31:35 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2021-03-23 20:16:47 +01:00
|
|
|
# Create a dedicated NGINX config
|
2019-01-28 19:15:11 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-08-15 12:31:35 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
yunohost service add $app --description="Distributed pastebin" --log="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
chmod 750 "/var/log/$app"
|
|
|
|
chmod -R o-rwx "/var/log/$app"
|
|
|
|
chown -R $app:$app "/var/log/$app"
|
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2022-01-05 03:58:46 +01:00
|
|
|
# INSTALLING DISTBIN
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2022-01-05 03:58:46 +01:00
|
|
|
ynh_script_progression --message="Installing Distbin..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
pushd $install_dir
|
2022-01-05 03:58:46 +01:00
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --ignore-scripts
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm run build
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app cp -af package* dist/
|
|
|
|
popd
|
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
pushd $install_dir/dist
|
2022-01-05 03:58:46 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --ignore-scripts --production
|
|
|
|
popd
|
2019-02-02 00:34:04 +01:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2021-04-10 01:14:00 +02:00
|
|
|
# ADD A CONFIGURATION
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2022-01-05 03:58:46 +01:00
|
|
|
ynh_script_progression --message="Adding a configuration file..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
chmod 400 "$install_dir/.env"
|
|
|
|
chown $app:$app "$install_dir/.env"
|
2021-04-10 01:14:00 +02:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2019-05-15 01:57:52 +02:00
|
|
|
|
2019-12-29 17:43:56 +01:00
|
|
|
# Start a systemd service
|
2023-08-03 01:19:34 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Started"
|
2022-01-05 03:58:46 +01:00
|
|
|
|
2019-12-29 22:13:51 +01:00
|
|
|
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
2021-02-28 11:37:19 +01:00
|
|
|
sleep 60
|
2019-12-29 22:13:51 +01:00
|
|
|
fi
|
2019-05-15 01:57:52 +02:00
|
|
|
|
2019-02-11 04:34:08 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|