mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
systemd-nspawn: add NotifyRead option
This commit is contained in:
parent
b2a14ee339
commit
4698012c52
1 changed files with 3 additions and 2 deletions
|
@ -14,11 +14,12 @@ let
|
|||
(assertOnlyFields [
|
||||
"Boot" "ProcessTwo" "Parameters" "Environment" "User" "WorkingDirectory"
|
||||
"Capability" "DropCapability" "KillSignal" "Personality" "MachineId"
|
||||
"PrivateUsers"
|
||||
"PrivateUsers" "NotifyReady"
|
||||
])
|
||||
(assertValueOneOf "Boot" boolValues)
|
||||
(assertValueOneOf "ProcessTwo" boolValues)
|
||||
(assertValueOneOf "PrivateUsers" (boolValues ++ [ "pick" ]))
|
||||
(assertValueOneOf "NotifyReady")
|
||||
];
|
||||
|
||||
checkFiles = checkUnitConfig "Files" [
|
||||
|
@ -82,7 +83,7 @@ let
|
|||
|
||||
};
|
||||
|
||||
instanceToUnit = name: def:
|
||||
instanceToUnit = name: def:
|
||||
{ text = ''
|
||||
[Exec]
|
||||
${attrsToSection def.execConfig}
|
||||
|
|
Loading…
Reference in a new issue