1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/webtrees_ynh.git synced 2024-09-03 18:26:37 +02:00
webtrees_ynh/scripts/install
Éric Gaspar efbf4f216a cleaning
2024-07-01 21:43:09 +02:00

61 lines
2.1 KiB
Bash
Executable file

#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# INITIALIZE AND STORE SETTINGS
#=================================================
admin_password=$(ynh_string_random --length=24)
admin_password_hashed=$(mkpasswd -m md5crypt --stdin <<< "$admin_password")
ynh_app_setting_set --app="$app" --key="admin_password" --value="$admin_password"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression "Setting up source files..."
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
chmod -R 700 "$install_dir/data"
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
#=================================================
# APP INITIAL CONFIGURATION
#=================================================
ynh_script_progression "Adding $app's configuration files..."
# Adding the details of the database to the config file
ynh_config_add --template="config.ini.php" --destination="$install_dir/data/config.ini.php"
# Load initial SQL into the new database
ynh_config_add --template="sql/webtrees.sql" --destination="$install_dir/webtrees.sql"
ynh_config_add --template="sql/admin.sql" --destination="$install_dir/admin.sql"
# Load initial SQL into the new database
ynh_mysql_db_shell < "$install_dir/webtrees.sql"
ynh_mysql_db_shell < "$install_dir/admin.sql"
ynh_secure_remove --file="$install_dir/webtrees.sql"
ynh_secure_remove --file="$install_dir/admin.sql"
#=================================================
# SYSTEM CONFIGURATION
#=================================================
ynh_script_progression "Adding system configurations related to $app..."
# Create a dedicated NGINX config
ynh_config_add_nginx
# Create a dedicated PHP-FPM config
ynh_config_add_phpfpm
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Installation of $app completed"