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

66 lines
2.1 KiB
Text
Raw Normal View History

2019-08-27 14:42:40 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2020-01-13 12:07:13 +01:00
#=================================================
2021-07-06 10:49:25 +02:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2020-01-13 12:07:13 +01:00
#=================================================
2021-07-06 11:15:10 +02:00
ynh_script_progression --message="Setting up source files..." --weight=3
2021-07-06 10:49:25 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-05-22 17:43:38 +02:00
ynh_setup_source --dest_dir="$install_dir"
2020-01-13 12:07:13 +01:00
2023-05-22 17:43:38 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2020-01-13 12:07:13 +01:00
2019-08-27 14:42:40 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-07-06 11:15:10 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2019-08-27 14:42:40 +02:00
2021-07-06 10:49:25 +02:00
# Create a dedicated NGINX config
2019-08-27 14:42:40 +02:00
ynh_add_nginx_config
2021-07-06 10:49:25 +02:00
# Create a dedicated PHP-FPM config
2023-05-22 17:52:07 +02:00
ynh_add_fpm_config --usage=low --footprint=low
2019-08-27 14:42:40 +02:00
#=================================================
2021-07-06 10:49:25 +02:00
# ADD A CONFIGURATION
2019-08-27 14:42:40 +02:00
#=================================================
2021-07-06 11:15:10 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2019-08-27 14:42:40 +02:00
2023-05-22 17:43:38 +02:00
ynh_add_config --template="../conf/config.dist.php" --destination="$install_dir/config.php"
2019-08-27 14:42:40 +02:00
2023-05-22 17:43:38 +02:00
chmod 644 "$install_dir/config.php"
chown $app: "$install_dir/config.php"
2019-08-27 14:42:40 +02:00
2023-05-22 18:04:25 +02:00
#=================================================
# DATABASE CONFIGURATION
#=================================================
ynh_script_progression --message="Adding database configuration..." --weight=1
2023-05-22 18:07:34 +02:00
ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" < $install_dir/db/SCHEMA.sql
2023-05-22 18:04:25 +02:00
2019-08-27 14:42:40 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2021-07-06 10:49:25 +02:00
# SETUP LOGROTATE
2019-08-27 14:42:40 +02:00
#=================================================
2021-07-06 11:15:10 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2019-08-27 14:42:40 +02:00
2021-07-06 10:49:25 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
2020-01-13 11:53:15 +01:00
2021-07-06 10:49:25 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-07-06 11:15:10 +02:00
ynh_script_progression --message="Installation of $app completed" --last