mirror of
https://github.com/NixOS/nix.git
synced 2024-12-12 16:42:30 +00:00
Make hook shutdown more reliable
This commit is contained in:
parent
02843ba4cb
commit
029424d17d
@ -617,7 +617,6 @@ HookInstance::HookInstance()
|
||||
});
|
||||
|
||||
pid.setSeparatePG(true);
|
||||
pid.setKillSignal(SIGTERM);
|
||||
fromHook.writeSide.close();
|
||||
toHook.readSide.close();
|
||||
}
|
||||
@ -626,6 +625,7 @@ HookInstance::HookInstance()
|
||||
HookInstance::~HookInstance()
|
||||
{
|
||||
try {
|
||||
toHook.writeSide.close();
|
||||
pid.kill(true);
|
||||
} catch (...) {
|
||||
ignoreException();
|
||||
|
Loading…
Reference in New Issue
Block a user