50 lines
2.7 KiB
Bash
Executable File
50 lines
2.7 KiB
Bash
Executable File
if [ ! -f /var/www/html/config.php ]; then
|
|
curl --location https://moodle.org/plugins/download.php/23360/mod_jitsi_moodle310_2021052500.zip > jitsi.zip
|
|
unzip jitsi.zip -d /var/www/html/mod/
|
|
rm jitsi.zip
|
|
|
|
curl --location https://moodle.org/plugins/download.php/23294/mod_bigbluebuttonbn_moodle310_2019101009.zip > bbb.zip
|
|
unzip bbb.zip -d /var/www/html/mod/
|
|
rm bbb.zip
|
|
|
|
#ADD plugins/auth_saml2.zip /var/www/html/
|
|
curl --location https://github.com/isard-vdi/moodle-auth_saml2/archive/refs/heads/role_map.zip > auth_saml2.zip
|
|
unzip auth_saml2.zip -d /var/www/html/auth/
|
|
mv /var/www/html/auth/moodle-auth_saml2-role_map /var/www/html/auth/saml2
|
|
rm auth_saml2.zip
|
|
|
|
curl --location https://github.com/3iPunt/moodle_mod_tresipuntshare/archive/refs/heads/master.zip > tresipuntshare.zip
|
|
unzip tresipuntshare.zip -d /var/www/html/mod/
|
|
mv /var/www/html/mod/moodle_mod_tresipuntshare-master /var/www/html/mod/tresipuntshare
|
|
rm tresipuntshare.zip
|
|
|
|
curl --location https://github.com/3iPunt/moodle_mod_tresipuntvideo/archive/refs/heads/master.zip > tresipuntvideo.zip
|
|
unzip tresipuntvideo.zip -d /var/www/html/mod/
|
|
mv /var/www/html/mod/moodle_mod_tresipuntvideo-master /var/www/html/mod/tresipuntvideo
|
|
rm tresipuntvideo.zip
|
|
|
|
curl --location https://github.com/3iPunt/moodle_mod_tresipuntaudio/archive/refs/heads/master.zip > tresipuntaudio.zip
|
|
unzip tresipuntaudio.zip -d /var/www/html/mod/
|
|
mv /var/www/html/mod/moodle_mod_tresipuntaudio-master /var/www/html/mod/tresipuntaudio
|
|
rm tresipuntaudio.zip
|
|
|
|
curl --location https://github.com/3iPunt/moodle_assignsubmission_tipnc/archive/refs/heads/master.zip > assignsubmission_tipnc.zip
|
|
mkdir -p /var/www/html/mod/assign/submission/
|
|
unzip assignsubmission_tipnc.zip -d /var/www/html/mod/assign/submission/
|
|
mv /var/www/html/mod/assign/submission/moodle_assignsubmission_tipnc-master /var/www/html/mod/assign/submission/tipnc
|
|
rm assignsubmission_tipnc.zip
|
|
|
|
# This blocks plugin would be better in its own repo
|
|
curl --location https://gitlab.com/digitaldemocratic/digitaldemocratic/-/raw/master/custom.sample/moodle/plugins/block_tresipuntmodspend.zip?inline=false > block_tresipuntmodspend.zip
|
|
unzip block_tresipuntmodspend.zip -d /var/www/html/blocks/
|
|
##should be already here, no need to move path /var/www/html/mod/tresipuntmodspend
|
|
rm block_tresipuntmodspend.zip
|
|
|
|
curl --location https://github.com/3iPunt/moodle_theme_cbe/archive/refs/heads/master.zip > tresipunt_theme_cbe.zip
|
|
unzip tresipunt_theme_cbe.zip -d /var/www/html/theme/
|
|
mv /var/www/html/theme/moodle_theme_cbe-master /var/www/html/theme/cbe
|
|
rm tresipunt_theme_cbe.zip
|
|
|
|
|
|
fi
|
|
chown -R nobody:root /var/www/html |