From 5369cb2dd328a72acc3d7a0d551e74a5646bdb45 Mon Sep 17 00:00:00 2001 From: Steve Brasier Date: Tue, 21 Oct 2025 08:31:55 +0000 Subject: [PATCH] skip entire task files for ondemand apps during extra builds [no ci] --- ansible/fatimage.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/fatimage.yml b/ansible/fatimage.yml index e0aa81977..f72a97697 100644 --- a/ansible/fatimage.yml +++ b/ansible/fatimage.yml @@ -136,25 +136,25 @@ when: "'openondemand' in group_names" - name: Open OnDemand remote desktop # Used for plain desktop and matlab - ansible.builtin.import_role: + ansible.builtin.include_role: name: openondemand tasks_from: vnc_compute.yml when: "'openondemand_desktop' or 'openondemand_matlab' in group_names" - name: Open OnDemand Jupyter node - ansible.builtin.import_role: + ansible.builtin.include_role: name: openondemand tasks_from: jupyter_compute.yml when: "'openondemand_jupyter' in group_names" - name: Open OnDemand RStudio node - ansible.builtin.import_role: + ansible.builtin.include_role: name: openondemand tasks_from: rstudio_compute.yml when: "'openondemand_rstudio' in group_names" - name: Open OnDemand Code Server node - ansible.builtin.import_role: + ansible.builtin.include_role: name: openondemand tasks_from: codeserver_compute.yml when: "'openondemand_codeserver' in group_names"