1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vikunja_ynh.git synced 2024-09-03 18:06:26 +02:00
This commit is contained in:
ericgaspar 2022-02-09 10:09:58 +01:00
parent 6c28659239
commit 02a9be2b2e
No known key found for this signature in database
GPG key ID: 574F281483054D44
4 changed files with 10 additions and 35 deletions

View file

@ -10,7 +10,7 @@ service:
# The base path on the file system where the binary and assets are.
# Vikunja will also look in this path for a config file, so you could provide only this variable to point to a folder
# with a config file which will then be used.
rootpath: "/opt/vikunja/"
rootpath: "__FINALPATH__"
# The max number of items which can be returned per page
maxitemsperpage: 50
# Enable the caldav endpoint, see the docs for more details

View file

@ -7,8 +7,8 @@ Requires=postgresql.service redis.service
Type=simple
User=__APP__
Group=__APP__
WorkingDirectory=/opt/vikunja
ExecStart=/opt/vikunja/vikunja
WorkingDirectory=__FINALPATH__/
ExecStart=__FINALPATH__/vikunja
RestartSec=2s
Restart=always

View file

@ -99,23 +99,14 @@ ynh_script_progression --message="Setting up source files..." --weight=1
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --source_id="front"
ynh_setup_source --dest_dir="$final_path" --source_id="$architecture"
mkdir -p "$final_path/files"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# INSTALL BACKEND
#=================================================
ynh_script_progression --message="Installing backend..." --weight=15
mkdir -p "/opt/vikunja"
mkdir -p "/opt/vikunja/files"
ynh_setup_source --dest_dir="/opt/vikunja" --source_id="$architecture"
chmod +x "/opt/vikunja/vikunja"
chown -R $app:www-data "/opt/vikunja/files"
chmod +x "$final_path/vikunja"
#=================================================
# NGINX CONFIGURATION

View file

@ -99,17 +99,11 @@ ynh_system_user_create --username=$app --home_dir="$final_path"
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Installing backend..." --weight=5
tempdir="$(mktemp -d)"
ynh_setup_source --dest_dir=$tempdir --source_id=api
ynh_exec_warn_less N | dpkg -i $tempdir/vikunja-unstable-amd64.deb
ynh_script_progression --message="Upgrading source files..." --weight=5
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --source_id="front" --keep="/etc/vikunja/config.yml"
ynh_setup_source --dest_dir="$final_path" --source_id="$architecture"
mkdir -p "/opt/vikunja/files"
fi
@ -117,18 +111,8 @@ fi
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
chmod +x "/opt/vikunja/vikunja"
chown -R $app:www-data "/opt/vikunja/files"
#=================================================
# ADD A CONFIGURATION
#=================================================
#ynh_script_progression --message="Adding a configuration file..." --weight=1
# redis_db=$(ynh_redis_get_free_db)
# ynh_add_config --template="../conf/config.yml" --destination="/etc/vikunja/config.yml"
#chmod 600 "/etc/vikunja/config.yml"
chmod +x "$final_path/vikunja"
chown -R $app:www-data "$final_path/files"
#=================================================
# NGINX CONFIGURATION