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

84 lines
2.7 KiB
Text
Raw Normal View History

2022-08-08 02:57:01 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2023-06-10 14:51:12 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2022-08-08 03:36:15 +02:00
2022-08-08 02:57:01 +02:00
#=================================================
2022-08-08 03:36:15 +02:00
# Setup Final Path
2022-08-08 02:57:01 +02:00
#=================================================
2022-08-14 03:26:26 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2022-08-08 02:57:01 +02:00
2023-06-10 11:39:13 +02:00
mkdir -p $install_dir
2022-08-08 04:10:46 +02:00
2023-06-10 11:39:13 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-08-08 02:57:01 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-08-14 03:26:26 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2022-08-08 02:57:01 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
2022-08-08 03:36:15 +02:00
2023-06-10 11:39:13 +02:00
pushd $install_dir
ynh_exec_as $app python3 -m venv $install_dir/venv
ynh_exec_as $app "$install_dir/venv/bin/pip" install --upgrade pip
ynh_exec_as $app "$install_dir/venv/bin/pip" install --upgrade setuptools
ynh_exec_as $app "$install_dir/venv/bin/pip" install --upgrade MarkupSafe
ynh_exec_as $app "$install_dir/venv/bin/pip" install isso gunicorn
2022-08-08 03:36:15 +02:00
popd
2022-08-08 02:57:01 +02:00
#=================================================
# ADD A CONFIGURATION
#=================================================
2022-08-14 03:26:26 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2022-08-08 02:57:01 +02:00
2023-06-10 11:39:13 +02:00
ynh_add_config --template="isso.cfg" --destination="$install_dir/isso.cfg"
2022-08-08 03:36:15 +02:00
2023-06-10 11:39:13 +02:00
chmod 400 "$install_dir/isso.cfg"
chown $app:$app "$install_dir/isso.cfg"
2022-08-08 02:57:01 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2022-08-14 03:26:26 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2022-08-08 02:57:01 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
2023-06-10 14:51:12 +02:00
yunohost service add $app --description="Lightweight commenting server" --log="/var/log/$app/$app.log"
2022-08-08 02:57:01 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-08-14 03:26:26 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-08-08 02:57:01 +02:00
# Start a systemd service
2023-06-10 14:51:12 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2022-08-08 02:57:01 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-08-14 03:26:26 +02:00
ynh_script_progression --message="Installation of $app completed" --last