Merge pull request #54954 from costrouc/munge-module-key-permissions

munge: fix module munge.key permissions from 0700 -> 0400 readonly
This commit is contained in:
Alyssa Ross
2019-01-30 18:28:08 +00:00
committed by GitHub

View File

@@ -50,7 +50,7 @@ in
path = [ pkgs.munge pkgs.coreutils ];
preStart = ''
chmod 0700 ${cfg.password}
chmod 0400 ${cfg.password}
mkdir -p /var/lib/munge -m 0711
chown -R munge:munge /var/lib/munge
mkdir -p /run/munge -m 0755