We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc72a2c commit 2dcbaedCopy full SHA for 2dcbaed
1 file changed
hooks/playbooks/update-container-selinux.yml
@@ -0,0 +1,15 @@
1
+---
2
+- name: Update container-selinux on ceph target nodes
3
+ hosts: "{{ cifmw_ceph_target | default('computes') }}"
4
+ gather_facts: false
5
+ become: true
6
+ tasks:
7
+ - name: Update container-selinux to latest available version
8
+ ansible.builtin.dnf:
9
+ name: container-selinux
10
+ state: latest
11
+
12
+ - name: Show container-selinux version
13
+ ansible.builtin.command:
14
+ cmd: rpm -q container-selinux
15
+ changed_when: false
0 commit comments