add o+x permission on service-state directories
this is needed for resolvconf, which writes resolv.conf as an output and wants to make it world-readable
This commit is contained in:
parent
ff2d3e1a63
commit
aecbe08f08
4 changed files with 4 additions and 3 deletions
|
@ -22,7 +22,7 @@ let
|
|||
++
|
||||
(mapAttrsToList (name: opts: "peer ${name} ${concatStringsSep "" opts}")
|
||||
p.peers)
|
||||
++ [ "user ${p.user}" ]
|
||||
++ lib.optional (p.user != null) "user ${p.user}"
|
||||
++ (lib.optional (p.makestep != null) "makestep ${toString p.makestep.threshold} ${toString p.makestep.limit}")
|
||||
++ (map (n: "allow ${n}") p.allow)
|
||||
++ (lib.optional (p.bindaddress != null) "bindaddress ${p.bindaddress}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue