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

122 lines
3.9 KiB
Text
Raw Normal View History

2014-05-08 19:46:08 +02:00
#!/bin/bash
2018-06-27 17:21:59 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-05-08 19:46:08 +02:00
2018-06-27 17:21:59 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
### Remove this function if there's nothing to clean before calling the remove script.
true
}
2018-06-27 17:21:59 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2018-06-27 17:21:59 +02:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2020-07-15 17:25:51 +02:00
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
2018-06-27 17:21:59 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
final_path=/var/www/$app
2020-04-26 00:47:07 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2018-06-27 17:21:59 +02:00
# Register (book) web path
2020-04-26 00:47:07 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2018-06-27 17:21:59 +02:00
2020-04-26 00:47:07 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Setting up source files..." --weight=11
2020-04-26 00:47:07 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
2020-07-15 17:07:20 +02:00
2020-04-26 00:47:07 +02:00
mkdir -p $final_path
2018-06-27 17:21:59 +02:00
2020-07-15 18:21:55 +02:00
cp -a ../sources/root_access_disabled/. $final_path
2014-07-22 16:08:09 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Configuring system user..." --weight=2
2018-06-27 17:21:59 +02:00
# Create a system user
ynh_system_user_create --username=$app
2018-06-27 17:21:59 +02:00
2020-07-15 17:07:20 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2018-06-27 17:21:59 +02:00
# Set permissions to app files
2020-07-15 17:07:20 +02:00
chown -R www-data:www-data $final_path
chmod 755 -R $final_path/adminer.php
2018-06-27 17:21:59 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
2020-04-26 00:47:07 +02:00
2018-06-27 17:21:59 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
2018-06-27 17:21:59 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Configuring PHP-fpm..." --weight=1
2020-04-26 00:47:07 +02:00
2018-06-27 17:21:59 +02:00
# Create a dedicated php-fpm config
2020-10-12 09:42:16 +02:00
ynh_add_fpm_config --phpversion=$YNH_PHP_VERSION --package="$extra_php_dependencies"
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2018-06-27 17:21:59 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Configuring SSOwat..." --weight=1
2020-04-26 00:47:07 +02:00
2020-10-12 09:42:16 +02:00
# Make app public if necessary or protect it
2018-06-27 17:21:59 +02:00
if [ $is_public -eq 1 ]
then
2020-10-12 09:42:16 +02:00
ynh_permission_update --permission "main" --add "visitors"
2018-06-27 17:21:59 +02:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2018-06-27 17:21:59 +02:00
2020-04-26 00:47:07 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2014-05-08 19:46:08 +02:00
2020-07-15 17:07:20 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-07-15 17:25:51 +02:00
ynh_script_progression --message="Installation of $app completed" --last