We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00a0c6 commit 86c5052Copy full SHA for 86c5052
cookbooks/aws-parallelcluster-platform/recipes/install/directories.rb
@@ -29,3 +29,13 @@
29
mode '1777'
30
recursive true
31
end
32
+
33
+# The default permission for directory /etc is 0755.
34
+# However, in Rocky9.4 it was unintentionally changed to 0777,
35
+# causing issues with Munge, that fails to start if /etc has group-writable permission without sticky bit.
36
+# See https://forums.rockylinux.org/t/changed-permissions-on-etc-in-rl9-4-genericcloud-image/14449
37
+directory '/etc' do
38
+ owner 'root'
39
+ mode '0755'
40
+ recursive false
41
+end
0 commit comments