systemconfig: accept uid and gid options

all we do with them is assert they're zero, to unbreak CI.
This code is getting rewritten anyway
module-based-network
Daniel Barlow 2023-04-14 23:19:56 +01:00
parent fb796e61e0
commit c744ef8c17
1 changed files with 4 additions and 0 deletions

View File

@ -25,7 +25,11 @@ let
, file ? null
, major ? null
, minor ? null
, uid ? 0
, gid ? 0
}:
assert uid == 0;
assert gid == 0;
let
pathname = "${prefix}/${filename}";
chmod =