mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 02:33:15 +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:
|
||||
(lib.optional (svc.serviceConfig ? Group) svc.serviceConfig.Group)
|
||||
++ (svc.serviceConfig.SupplementaryGroups or [ ]);
|
||||
++ lib.toList (svc.serviceConfig.SupplementaryGroups or [ ]);
|
||||
in
|
||||
{
|
||||
assertion = builtins.all (svc:
|
||||
|
Loading…
Reference in New Issue
Block a user