2017-03-17 12:10:31 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-08 21:05:06 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2018-03-19 03:56:00 +01:00
|
|
|
source _common.sh
|
2020-10-08 21:05:06 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-19 03:56:00 +01:00
|
|
|
|
2020-10-08 21:05:06 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=6
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-01-04 22:26:37 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-10-08 21:05:06 +02:00
|
|
|
|
2024-01-04 22:26:37 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2020-10-08 21:05:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-03 04:33:56 +02:00
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
2020-10-08 21:05:06 +02:00
|
|
|
#=================================================
|
2022-07-03 04:33:56 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..."
|
2018-03-19 03:56:00 +01:00
|
|
|
|
2024-01-04 22:26:37 +01:00
|
|
|
ynh_add_config --template="config-sample.js" --destination="$install_dir/config.js"
|
2017-03-17 12:10:31 +01:00
|
|
|
|
2024-01-04 22:26:37 +01:00
|
|
|
chmod 400 "$install_dir/config.js"
|
|
|
|
chown "$app:$app" "$install_dir/config.js"
|
2017-03-17 12:10:31 +01:00
|
|
|
|
2022-07-03 04:33:56 +02:00
|
|
|
#=================================================
|
2024-01-04 22:26:37 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2020-10-08 21:05:06 +02:00
|
|
|
#=================================================
|
2024-01-04 22:26:37 +01:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2020-10-08 21:05:06 +02:00
|
|
|
|
2024-01-04 22:26:37 +01:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2017-03-17 12:10:31 +01:00
|
|
|
|
2020-10-08 21:05:06 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-03-17 12:10:31 +01:00
|
|
|
|
2022-07-03 04:33:56 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|