From 9fc63c0de4631d0029656b18be1c85ca37ae7404 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Fri, 24 May 2024 09:16:57 +0200 Subject: [PATCH 1/2] remove deprecated include --- tasks/portal.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/portal.yml b/tasks/portal.yml index 3317994..41c2fa6 100644 --- a/tasks/portal.yml +++ b/tasks/portal.yml @@ -8,7 +8,7 @@ - name: force all notified handlers (to assure docker is restarted) meta: flush_handlers -- include: slurm.yml +- include_tasks: slurm.yml when: galaxy_lrms == "slurm" - name: Copy local_job_conf.xml From 16e6a4068655444c9e132e3027a3e38e81212b0f Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Fri, 24 May 2024 09:17:36 +0200 Subject: [PATCH 2/2] remove deprecated include --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 198733b..3bf36f6 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -3,7 +3,7 @@ when: galaxy_node_type != 'portal' and galaxy_node_type != 'wn' and galaxy_node_type != 'pulsar' # Create galaxy user to launch the daemon -- include: user.yml +- include_tasks: user.yml - name: Install and pip and setuptools and virtualenv package: name=python3-pip,python3-setuptools,python3-virtualenv @@ -30,4 +30,4 @@ file: path={{galaxy_export_dir}} recurse=yes state=directory mode=0777 - name: Include "{{galaxy_node_type}}" recipe - include: "{{galaxy_node_type}}.yml" + include_tasks: "{{galaxy_node_type}}.yml"