We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2798417 commit 73c3752Copy full SHA for 73c3752
ansible/roles/compute_init/tasks/install.yml
@@ -22,8 +22,6 @@
22
rsync_opts:
23
- "-p"
24
- "--chmod=D770,F644"
25
- - "--owner=root"
26
- - "--group=root"
27
recursive: true
28
use_ssh_args: true
29
become: true
@@ -57,6 +55,14 @@
57
55
- src: ../../eessi
58
56
dest: roles/
59
+- name: Ensure ownership is root after sync
+ ansible.builtin.file:
60
+ path: "/etc/ansible-init/playbooks/"
61
+ owner: root
62
+ group: root
63
+ recursive: true
64
+ become: true
65
+
66
- name: Add filter_plugins to ansible.cfg
67
ansible.builtin.lineinfile:
68
path: /etc/ansible-init/ansible.cfg
0 commit comments