mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 10:44:18 +00:00
nixos/acme: fix cert ownership assert for string SupplementaryGroups
(#356064)
This commit is contained in:
commit
f608d1b3bc
@ -6,7 +6,7 @@ let
|
|||||||
|
|
||||||
svcGroups = svc:
|
svcGroups = svc:
|
||||||
(lib.optional (svc.serviceConfig ? Group) svc.serviceConfig.Group)
|
(lib.optional (svc.serviceConfig ? Group) svc.serviceConfig.Group)
|
||||||
++ (svc.serviceConfig.SupplementaryGroups or [ ]);
|
++ lib.toList (svc.serviceConfig.SupplementaryGroups or [ ]);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assertion = builtins.all (svc:
|
assertion = builtins.all (svc:
|
||||||
|
Loading…
Reference in New Issue
Block a user