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

save galaxy version in file for triggering subdomains #1363

Merged
merged 2 commits into from
Nov 26, 2024
Merged
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
9 changes: 8 additions & 1 deletion sn06.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@
selinux:
state: disabled
post_tasks:
- name: Write Galaxy __galaxy_client_build_version and __galaxy_current_commit_id
delegate_to: 127.0.0.1
ansible.builtin.copy:
content: |
client_build_version={{ __galaxy_client_build_version }}
current_commit_id={{ __galaxy_current_commit_id }}
dest: "{{ playbook_dir }}/galaxy_update.properties"
- name: Append some users to the systemd-journal group
user:
name: "{{ item }}"
Expand Down Expand Up @@ -238,7 +245,7 @@
galaxy_manage_static_setup: true
galaxy_manage_mutable_setup: true
galaxy_manage_database: true
galaxy_manage_subdomain_static: false
galaxy_manage_subdomain_static: true
galaxy_manage_host_filters: false # test when themes work
galaxy_manage_systemd: false # switch to gravity(?)
galaxy_manage_gravity: false
Expand Down
Loading