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

66 lines
3.2 KiB
Text
Raw Permalink Normal View History

2017-12-14 18:03:01 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
2017-12-14 18:03:01 +01:00
ynh_app_setting_set --key=php_upload_max_filesize --value=1G
2017-12-14 18:03:01 +01:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2022-06-19 21:58:27 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
password=$(ynh_string_random --length=30)
2023-03-30 17:49:45 +02:00
2017-12-14 18:03:01 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression "Setting up source files..."
2017-12-14 18:03:01 +01:00
ynh_setup_source --dest_dir="$install_dir"
2017-12-14 18:03:01 +01:00
#=================================================
# SYSTEM CONFIGURATION
2017-12-14 18:03:01 +01:00
#=================================================
ynh_script_progression "Adding system configurations related to $app..."
2018-09-01 14:32:40 +02:00
ynh_config_add_phpfpm
2017-12-14 18:03:01 +01:00
ynh_config_add_nginx
2022-06-19 21:58:27 +02:00
ynh_config_add --template="cron" --destination="/etc/cron.d/$app"
2023-08-15 10:27:30 +02:00
2017-12-14 18:03:01 +01:00
#=================================================
2020-03-24 02:27:29 +01:00
# SETUP APPLICATION
2017-12-14 18:03:01 +01:00
#=================================================
ynh_script_progression "Setting up the application..."
2017-12-14 18:03:01 +01:00
php${php_version} -d max_input_vars=5000 "$install_dir/admin/cli/install.php" --wwwroot="https://${domain}${path%/}" --dataroot="$data_dir" --dbtype='pgsql' --dbname="$db_name" --dbuser="$db_name" --dbpass="$db_pwd" --adminuser="$admin" --adminpass="$password" --adminemail="$email" --fullname="$site_name" --shortname="$site_name" --non-interactive --agree-license
2020-03-24 02:27:29 +01:00
ynh_store_file_checksum "$install_dir/config.php"
2017-12-14 18:03:01 +01:00
2020-03-24 18:19:49 +01:00
#=================================================
# ACTIVATE LDAP SUPPORT
#=================================================
ynh_script_progression "Activate LDAP support..."
2020-03-24 18:19:49 +01:00
ynh_psql_db_shell <<< "UPDATE public.mdl_config SET value='ldap,email' WHERE name='auth';"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='ldap://127.0.0.1/' WHERE plugin='auth_ldap' AND name='host_url';"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='uid' WHERE plugin='auth_ldap' AND name='user_attribute';"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='ou=users,dc=yunohost,dc=org' WHERE plugin='auth_ldap' AND name='contexts';"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='givenName' WHERE plugin='auth_ldap' AND name='field_map_firstname';"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='sn' WHERE plugin='auth_ldap' AND name='field_map_lastname';"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='mail' WHERE plugin='auth_ldap' AND name='field_map_email';"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='onlogin' WHERE plugin='auth_ldap' AND (name='field_updatelocal_firstname' OR name='field_updatelocal_lastname' OR name='field_updatelocal_email');"
ynh_psql_db_shell <<< "UPDATE public.mdl_config_plugins SET value='locked' WHERE plugin='auth_ldap' AND (name='field_lock_firstname' OR name='field_lock_lastname' OR name='field_lock_email');"
2020-03-24 18:38:07 +01:00
ynh_psql_db_shell <<< "UPDATE public.mdl_user SET auth='ldap' WHERE username='$admin';"
2021-12-12 10:25:13 +01:00
php$php_version "$install_dir/admin/cli/purge_caches.php"
2020-03-24 18:19:49 +01:00
2020-03-24 02:27:29 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2017-12-14 18:03:01 +01:00
ynh_script_progression "Installation of $app completed"