Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add site admin creds to login page #82

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
sandbox_domain_aliases: []
sandbox_environment: development
sandbox_versions:
- branch: MOODLE_39_STABLE
version: 3.9
- branch: MOODLE_403_STABLE
version: 4.3

- name: Import main playbook
ansible.builtin.import_playbook: ../../main.playbook.yml
4 changes: 2 additions & 2 deletions molecule/default/side_effect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
sandbox_domain_aliases: []
sandbox_environment: development
sandbox_versions:
- branch: MOODLE_39_STABLE
version: 3.9
- branch: MOODLE_403_STABLE
version: 4.3

- name: Import reset playbook
ansible.builtin.import_playbook: ../../moodle_reset.playbook.yml
4 changes: 2 additions & 2 deletions molecule/uninstall/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
sandbox_domain_aliases: []
sandbox_environment: development
sandbox_versions:
- branch: MOODLE_400_STABLE
version: 4.0
- branch: MOODLE_403_STABLE
version: 4.3

- name: Import main playbook
ansible.builtin.import_playbook: ../../main.playbook.yml
12 changes: 8 additions & 4 deletions requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
# @copyright 2023 Geoffrey Bernardo van Wyk (https://geoffreyvanwyk.dev)
##

- name: geoffreyvanwyk.php
- name: geoffreyvanwyk.moodle
- name: geoffreyvanwyk.moodle_uninstall
- name: geerlingguy.certbot
roles:
- name: geoffreyvanwyk.php
- name: geoffreyvanwyk.moodle
- name: geoffreyvanwyk.moodle_uninstall
- name: geerlingguy.certbot

collections:
- name: geoffreyvanwyk.moodle
8 changes: 8 additions & 0 deletions tasks/install_moodle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,11 @@
additionalhtmlfooter: |
{{ lookup('file', 'countdown.html') }}
{{ lookup('file', 'umami_analytics.html') }}
adminusername: "{{ moodle_admin_username }}"
adminpassword: "{{ moodle_admin_password }}"
theme: learningsandboxonline
moodle_plugins_git:
- name: theme_learningsandboxonline
repository: >-
https://github.com/geoffreyvanwyk/moodle-theme_learningsandboxonline
version: "{{ sandbox_item.branch }}"
Loading