1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00
This commit is contained in:
Jason Nagin 2024-10-29 14:07:35 -04:00 committed by GitHub
parent d0fe55a530
commit 46ce1f3439
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
if [[ ${VERSION} >= 41 ]] if [[ ${VERSION} -ge 41 ]]
then then
exit 0 exit 0
fi fi

View file

@ -10,6 +10,7 @@
register: services_state register: services_state
- name: Check that flatpak-add-fedora-repos is disabled - name: Check that flatpak-add-fedora-repos is disabled
when: services_state['ansible_facts']['services']['flatpak-add-fedora-repos.service'] is defined
ansible.builtin.assert: ansible.builtin.assert:
that: that:
- services_state['ansible_facts']['services']['flatpak-add-fedora-repos.service']['status'] == 'disabled' - services_state['ansible_facts']['services']['flatpak-add-fedora-repos.service']['status'] == 'disabled'