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

115 lines
3.8 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_abort_if_errors
2018-06-27 17:21:59 +02:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2020-10-12 20:47:58 +02:00
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
2021-11-20 22:30:25 +01:00
admin=$YNH_APP_ARG_ADMIN
2021-12-11 22:21:42 +01:00
phpversion=$YNH_PHP_VERSION
2020-10-12 20:47:58 +02:00
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-10-12 20:47:58 +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
2021-11-20 22:30:25 +01:00
ynh_app_setting_set --app=$app --key=admin --value=$admin
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=1
ynh_install_app_dependencies $pkg_dependencies
2020-04-26 00:47:07 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..." --weight=2
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
2020-04-26 00:47:07 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-10-12 20:47:58 +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
mkdir -p $final_path
2018-06-27 17:21:59 +02:00
2021-11-20 22:30:25 +01:00
#copy files from with_root_access folder to the final_path
cp -a ../sources/with_root_access/. $final_path
2014-07-22 16:08:09 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2018-06-27 17:21:59 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-10-12 20:47:58 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
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-10-12 20:47:58 +02:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
2018-06-27 17:21:59 +02:00
# Create a dedicated php-fpm config
2021-12-11 22:21:42 +01:00
ynh_add_fpm_config --usage=low --footprint=low
2018-06-27 17:21:59 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-06 11:58:17 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2018-06-27 17:21:59 +02:00
2020-10-12 20:47:58 +02:00
# Make app public if necessary or protect it
2021-11-20 22:30:25 +01:00
ynh_permission_update --permission="main" --remove="all_users" --add=$admin
2018-06-27 17:21:59 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-10-12 20:47:58 +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-10-12 20:47:58 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-20 22:30:25 +01:00
ynh_script_progression --message="Installation of $app completed" --last