forked from dan/liminix
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
This commit is contained in:
parent
fb796e61e0
commit
c744ef8c17
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user