1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vikunja_ynh.git synced 2024-09-03 18:06:26 +02:00
vikunja_ynh/scripts/install

107 lines
3.8 KiB
Text
Raw Normal View History

2021-08-05 17:28:35 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
timezone="$(cat /etc/timezone)"
secret=$(ynh_string_random --length=32)
2023-10-27 09:20:57 +02:00
redis_db=$(ynh_redis_get_free_db)
backend_path=/opt/$app
2021-08-05 17:28:35 +02:00
2022-01-16 16:12:55 +01:00
set_motd=""
2022-01-16 17:00:45 +01:00
enable_registration="true"
2022-08-20 22:21:33 +02:00
enable_linksharing="true"
enable_taskattachments="true"
enable_taskcomments="true"
enable_emailreminders="true"
enable_userdeletion="true"
maxavatarsize=1024
maxitemsperpage=50
2022-01-16 16:12:55 +01:00
2021-08-05 17:28:35 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2023-10-27 09:20:57 +02:00
ynh_app_setting_set --app=$app --key=backend_path --value=$backend_path
2022-01-16 16:12:55 +01:00
ynh_app_setting_set --app=$app --key=set_motd --value=$set_motd
2022-01-16 17:00:45 +01:00
ynh_app_setting_set --app=$app --key=enable_registration --value=$enable_registration
2022-08-20 22:21:33 +02:00
ynh_app_setting_set --app=$app --key=enable_linksharing --value=$enable_linksharing
ynh_app_setting_set --app=$app --key=enable_taskattachments --value=$enable_taskattachments
ynh_app_setting_set --app=$app --key=enable_taskcomments --value=$enable_taskcomments
ynh_app_setting_set --app=$app --key=enable_emailreminders --value=$enable_emailreminders
ynh_app_setting_set --app=$app --key=enable_userdeletion --value=$enable_userdeletion
ynh_app_setting_set --app=$app --key=maxavatarsize --value=$maxavatarsize
ynh_app_setting_set --app=$app --key=maxitemsperpage --value=$maxitemsperpage
2021-08-05 17:28:35 +02:00
#=================================================
# INSTALL FRONTEND
2021-08-05 17:28:35 +02:00
#=================================================
ynh_script_progression --message="Setting up frontend..." --weight=1
2021-08-05 17:28:35 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-03-02 19:15:23 +01:00
ynh_setup_source --dest_dir="$install_dir" --source_id="front"
2022-02-09 10:09:58 +01:00
2023-03-02 19:15:23 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-02-09 11:05:15 +01:00
#=================================================
# INSTALL BACKEND
2022-02-09 11:05:15 +01:00
#=================================================
ynh_script_progression --message="Setting up backend..." --weight=1
2022-02-09 11:05:15 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2022-06-21 15:40:04 +02:00
mkdir -p "$backend_path"
mkdir -p "$backend_path/files"
tempdir="$(mktemp -d)"
2023-04-05 23:07:17 +02:00
ynh_setup_source --dest_dir=$tempdir --source_id="back"
back="$(find $tempdir -name "vikunja-*" \! -name "*.sha256")"
2022-06-21 15:40:04 +02:00
cp "$back" "$backend_path/vikunja"
2022-02-09 11:05:15 +01:00
2022-06-21 15:40:04 +02:00
chmod +x "$backend_path/vikunja"
chown -R $app:www-data "$backend_path/files"
2022-02-09 11:05:15 +01:00
2021-08-07 22:24:06 +02:00
#=================================================
2023-10-27 09:20:57 +02:00
# SYSTEM CONFIGURATION
2021-08-07 22:24:06 +02:00
#=================================================
2023-10-27 09:20:57 +02:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2021-08-07 22:24:06 +02:00
2023-10-27 09:20:57 +02:00
ynh_add_nginx_config
2022-02-20 09:41:27 +01:00
2023-10-27 09:20:57 +02:00
ynh_add_systemd_config
yunohost service add $app --description="Self-hosted To-Do list application" --log="/var/log/$app/$app.log"
2021-08-07 22:24:06 +02:00
2021-08-05 17:28:35 +02:00
#=================================================
2023-10-27 09:20:57 +02:00
# ADD A CONFIGURATION
2021-08-05 17:28:35 +02:00
#=================================================
2023-10-27 09:20:57 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2021-08-05 17:28:35 +02:00
2023-10-27 09:20:57 +02:00
ynh_add_config --template="config.yml" --destination="$backend_path/config.yml"
2021-08-05 17:28:35 +02:00
2023-10-27 09:20:57 +02:00
chmod 400 "$backend_path/config.yml"
chown $app:$app "$backend_path/config.yml"
2021-08-05 17:28:35 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
# Start a systemd service
2022-02-09 10:34:44 +01:00
ynh_systemd_action --service_name=$app --action=start --log_path=systemd #--line_match="server started on"
2021-08-05 17:28:35 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last