Browse Source

[wip] 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.
Vadim Rutkovsky 7 years ago
parent
commit
561422ac46
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 - -