mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
8 lines
No EOL
464 B
Bash
Executable file
8 lines
No EOL
464 B
Bash
Executable file
#!/bin/bash -x
|
|
sudo -u {{ apache_user }} /usr/bin/php {{ moodle_base }}/admin/cli/install.php \
|
|
--wwwroot=http://{{ iiab_hostname }}.{{ iiab_domain }}/moodle --dataroot={{ moodle_data }} \
|
|
--dbtype=pgsql --dbname={{ moodle_database_name }} --dbuser=Admin --dbpass=changeme \
|
|
--fullname=Your_School --shortname=School \
|
|
--adminuser=admin --adminpass=changeme \
|
|
--non-interactive --agree-license
|
|
chown {{ apache_user }}:{{ apache_user }} {{ moodle_base }}/config.php |