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
1 changed files with 4 additions and 0 deletions
|
@ -25,7 +25,11 @@ let
|
||||||
, file ? null
|
, file ? null
|
||||||
, major ? null
|
, major ? null
|
||||||
, minor ? null
|
, minor ? null
|
||||||
|
, uid ? 0
|
||||||
|
, gid ? 0
|
||||||
}:
|
}:
|
||||||
|
assert uid == 0;
|
||||||
|
assert gid == 0;
|
||||||
let
|
let
|
||||||
pathname = "${prefix}/${filename}";
|
pathname = "${prefix}/${filename}";
|
||||||
chmod =
|
chmod =
|
||||||
|
|
Loading…
Reference in a new issue