Browse Source

Merge pull request #7443 from vrutkovs/etcd-permissions-on-atomic

Automatic merge from submit-queue.

system containers: ensure Atomic won't reset permissions for etcd_data_dir

Default Atomic tmpfile has:
```
d /var/lib/etcd 0755 etcd etcd - -
```
in /usr/lib/tmpfiles.d/rpm-ostree-1-autovar.conf

Etcd system container requires this dir to be owned by root, so system
container installation should override tmpfiles.

Note, that etcd system container installs its own
/etc/tmpfiles.d/etcd.conf, so this override should probably happen
there.

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1553084
OpenShift Merge Robot 7 years ago
parent
commit
fc31bdbeaa
2 changed files with 7 additions and 0 deletions
  1. 6 0
      roles/etcd/tasks/system_container.yml
  2. 1 0
      roles/etcd/templates/etcd-dir.conf.j2

+ 6 - 0
roles/etcd/tasks/system_container.yml

@@ -86,3 +86,9 @@
     owner: root
     group: root
     recurse: True
+
+- name: Ensure correct permissions are set for etcd_data_dir
+  template:
+    src: etcd-dir.conf.j2
+    dest: "/etc/tmpfiles.d/etcd-dir.conf"
+    backup: true

+ 1 - 0
roles/etcd/templates/etcd-dir.conf.j2

@@ -0,0 +1 @@
+d {{ etcd_data_dir }} 0700 root root - -