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

Stage 6/7 bypass of apps not yet compatible w/ Ubuntu 22.04 (Kolibri, Nextcloud, Moodle, Sugarizer) [ASIDE: Node.js 18.x works manually or using deb.nodesource.com install script] #3189

Merged
merged 1 commit into from
Apr 21, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion roles/6-generic-apps/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
- name: NEXTCLOUD
include_role:
name: nextcloud
when: nextcloud_install
when: nextcloud_install and not is_ubuntu_2204 # TEMPORARY

- name: WORDPRESS
include_role:
Expand Down
6 changes: 3 additions & 3 deletions roles/7-edu-apps/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- name: KOLIBRI
include_role:
name: kolibri
when: kolibri_install
when: kolibri_install and not is_ubuntu_2204 # TEMPORARY

- name: KIWIX
include_role:
Expand All @@ -21,7 +21,7 @@
- name: MOODLE
include_role:
name: moodle
when: moodle_install
when: moodle_install and not is_ubuntu_2204 # TEMPORARY

- name: OSM-VECTOR-MAPS
include_role:
Expand All @@ -43,7 +43,7 @@
- name: SUGARIZER
include_role:
name: sugarizer
when: sugarizer_install
when: sugarizer_install and not is_ubuntu_2204 # TEMPORARY

- name: Recording STAGE 7 HAS COMPLETED ========================
lineinfile:
Expand Down