2017-07-01 19:54:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-01 11:29:01 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2017-07-05 12:28:42 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-08-01 11:29:01 +02:00
|
|
|
#=================================================
|
2024-07-01 11:30:11 +02:00
|
|
|
# INITIALIZE AND STORE SETTINGS
|
2017-08-01 11:29:01 +02:00
|
|
|
#=================================================
|
2017-07-05 12:28:42 +02:00
|
|
|
|
2023-07-30 16:49:26 +02:00
|
|
|
admin_password=$(ynh_string_random 24)
|
|
|
|
admin_password_hashed=$(mkpasswd -m md5crypt --stdin <<< "$admin_password")
|
2018-09-01 18:12:10 +02:00
|
|
|
|
2024-07-01 11:30:11 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key="admin_password" --value="$admin_password"
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
2019-04-18 04:57:31 +02:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
2020-07-30 18:54:44 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
2019-04-06 20:29:15 +02:00
|
|
|
|
2019-04-18 04:57:31 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-06-07 22:28:49 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2024-07-01 11:30:11 +02:00
|
|
|
chmod -R 700 "$install_dir/data"
|
2023-06-07 22:28:49 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-07-01 11:30:11 +02:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2018-09-01 18:12:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-07-01 11:30:11 +02:00
|
|
|
# APP INITIAL CONFIGURATION
|
2018-09-01 18:12:10 +02:00
|
|
|
#=================================================
|
2024-07-01 11:30:11 +02:00
|
|
|
ynh_script_progression --message="Adding $app's configuration files..." --weight=1
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2019-04-18 04:58:41 +02:00
|
|
|
# Adding the details of the database to the config file
|
2023-11-08 10:08:42 +01:00
|
|
|
ynh_add_config --template="config.ini.php" --destination="$install_dir/data/config.ini.php"
|
2019-04-18 04:58:41 +02:00
|
|
|
|
|
|
|
# Load initial SQL into the new database
|
2024-07-01 11:30:11 +02:00
|
|
|
ynh_add_config --template="sql/webtrees.sql" --destination="$install_dir/webtrees.sql"
|
|
|
|
ynh_add_config --template="sql/admin.sql" --destination="$install_dir/admin.sql"
|
2019-04-18 04:58:41 +02:00
|
|
|
|
2024-07-01 11:30:11 +02:00
|
|
|
ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < "$install_dir/webtrees.sql"
|
|
|
|
ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < "$install_dir/admin.sql"
|
2019-04-18 04:58:41 +02:00
|
|
|
|
2024-07-01 11:30:11 +02:00
|
|
|
ynh_secure_remove --file="$install_dir/webtrees.sql"
|
|
|
|
ynh_secure_remove --file="$install_dir/admin.sql"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SYSTEM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-12 15:31:49 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|