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

Devel #55

Merged
merged 2 commits into from
May 24, 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 tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
2 changes: 1 addition & 1 deletion tasks/portal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading