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

49 lines
1.5 KiB
Text
Raw Normal View History

2015-01-05 16:31:39 +01:00
#!/bin/bash
2019-05-24 04:21:43 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-09-03 01:55:45 +02:00
2019-05-24 04:21:43 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-24 11:23:08 +02:00
ynh_script_progression --message="Setting up source files..." --weight=3
2019-05-24 04:21:43 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2019-05-24 04:21:43 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-12 13:03:11 +02:00
2019-05-24 04:21:43 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-13 19:04:02 +01:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=3
2019-05-24 04:21:43 +02:00
# Create a dedicated php-fpm config
ynh_add_fpm_config
2019-05-24 04:21:43 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-05-24 04:21:43 +02:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2021-09-12 13:03:11 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2019-05-24 04:21:43 +02:00
ynh_add_config --template="../conf/config.php.example" --destination="$install_dir/config/config.php"
chmod 644 "$install_dir/config/config.php"
chown $app:$app "$install_dir/config/config.php"
2019-05-24 04:21:43 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-24 11:23:08 +02:00
ynh_script_progression --message="Installation of $app completed" --last