1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

munge: fix module munge.key permissions from 0700 -> 0400 readonly

This commit is contained in:
Chris Ostrouchov 2019-01-30 12:53:54 -05:00
parent 72f324dbc7
commit 5a5def3753
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573

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