Browse Source

Merge pull request #4680 from ingvagabund/set-label-of-var-lib-etcd

set the proper label of /var/lib/etcd directory
Jan Chaloupka 7 years ago
parent
commit
cd578ccdb6
1 changed files with 15 additions and 0 deletions
  1. 15 0
      roles/etcd_common/tasks/backup.yml

+ 15 - 0
roles/etcd_common/tasks/backup.yml

@@ -61,6 +61,21 @@
   - r_etcd_common_embedded_etcd | bool
   - not l_ostree_booted.stat.exists | bool
 
+- name: Check selinux label of '{{ l_etcd_data_dir }}'
+  command: >
+    stat -c '%C' {{ l_etcd_data_dir }}
+  register: l_etcd_selinux_labels
+
+- debug:
+    msg: "{{ l_etcd_selinux_labels }}"
+
+- name: Make sure the '{{ l_etcd_data_dir }}' has the proper label
+  command: >
+    chcon -t svirt_sandbox_file_t  "{{ l_etcd_data_dir }}"
+  when:
+  - l_etcd_selinux_labels.rc == 0
+  - "'svirt_sandbox_file_t' not in l_etcd_selinux_labels.stdout"
+
 - name: Generate etcd backup
   command: >
     {{ r_etcd_common_etcdctl_command }} backup --data-dir={{ l_etcd_incontainer_data_dir }}