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

36 lines
1 KiB
Text
Raw Normal View History

#!/bin/bash
2020-11-05 13:34:17 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-11-05 13:34:17 +01:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=7
2023-10-02 19:37:44 +02:00
cp -a ../sources/* "$install_dir"
2020-11-05 13:34:17 +01:00
2023-10-02 19:37:44 +02:00
chmod -R o-rwx "$install_dir"
2023-10-03 12:10:16 +02:00
chown -R $app:www-data "$install_dir"
2020-11-05 13:34:17 +01:00
#=================================================
2023-10-03 12:10:16 +02:00
# SYSTEM CONFIGURATION
2020-11-05 13:34:17 +01:00
#=================================================
2023-10-03 12:10:16 +02:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2020-11-05 13:34:17 +01:00
ynh_add_nginx_config
ynh_add_fpm_config --usage=low --footprint=low
2020-11-26 17:57:28 +01:00
2020-11-05 13:34:17 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last