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

78 lines
3.4 KiB
Text
Raw Normal View History

2014-01-14 22:57:44 +01:00
#!/bin/bash
source _common.sh
2017-08-29 02:34:05 +02:00
source /usr/share/yunohost/helpers
#=================================================
# CREATE A MYSQL SUPERUSER
2017-08-29 02:34:05 +02:00
#=================================================
# Setup a privileged user for phpmyadmin (to prevent using MySQL root user)
db_admin_user="${app}_root"
ynh_app_setting_set --key=db_admin_user --value=$db_admin_user
db_admin_pwd="$(ynh_string_random)"
ynh_app_setting_set --key=db_admin_pwd --value=$db_admin_pwd
2019-05-18 14:04:40 +02:00
if ! ynh_mysql_user_exists --user=$db_admin_user
2019-02-17 15:42:09 +01:00
then
2019-05-18 14:04:40 +02:00
ynh_mysql_create_user $db_admin_user "$db_admin_pwd"
ynh_mysql_db_shell <<< "GRANT ALL PRIVILEGES ON *.* TO '$db_admin_user'@'localhost' IDENTIFIED BY '$db_admin_pwd' WITH GRANT OPTION; FLUSH PRIVILEGES;" --database=mysql
fi
2019-02-17 15:42:09 +01:00
2017-08-29 02:34:05 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression "Setting up source files..."
2017-08-29 02:34:05 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2017-08-29 02:34:05 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:www-data "$install_dir"
2017-08-29 02:34:05 +02:00
#=================================================
2023-11-02 18:44:07 +01:00
# SYSTEM CONFIGURATION
2017-08-29 02:34:05 +02:00
#=================================================
ynh_script_progression "Adding system configurations related to $app..."
2017-08-29 02:34:05 +02:00
2020-09-24 13:44:38 +02:00
# Create a dedicated NGINX config
ynh_config_add_nginx
2017-08-29 02:34:05 +02:00
2020-09-24 13:44:38 +02:00
# Create a dedicated PHP-FPM config
ynh_config_add_phpfpm
2017-08-29 02:34:05 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
# POPULATE THE DATABASE
#=================================================
ynh_script_progression "Filling database..."
2017-08-29 02:34:05 +02:00
ynh_replace --match="phpmyadmin" --replace="$db_name" --file=$install_dir/sql/create_tables.sql
ynh_mysql_db_shell \
< $install_dir/sql/create_tables.sql
2017-08-29 02:34:05 +02:00
#=================================================
# CONFIGURE PHPMYADMIN
#=================================================
ynh_script_progression "Configuring $app..."
2017-08-29 02:34:05 +02:00
ynh_config_add --template="config.inc.php" --destination="$install_dir/config.inc.php"
2021-07-10 22:32:23 +02:00
# config.inc.php contains sensitive data, restrict its access
#REMOVEME? Assuming the file is setup using ynh_config_add, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown $app: $install_dir/config.inc.php
#REMOVEME? Assuming the file is setup using ynh_config_add, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 640 $install_dir/config.inc.php
2017-08-29 02:34:05 +02:00
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Setup phpMyAdmin temporary folder
mkdir -p $install_dir/tmp
chown $app: $install_dir/tmp
2019-02-17 20:58:14 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Installation of $app completed"