should restart on failure on mac
This commit is contained in:
parent
21d61c818e
commit
0ba9c7826e
|
@ -237,7 +237,7 @@ require('fs').readFile(confpath, 'utf8', function (err, text) {
|
||||||
// TODO closeAll other things
|
// TODO closeAll other things
|
||||||
process.nextTick(function () {
|
process.nextTick(function () {
|
||||||
// system daemon will restart the process
|
// system daemon will restart the process
|
||||||
process.exit();
|
process.exit(22); // use non-success exit code
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -32,12 +32,15 @@
|
||||||
<key>RunAtLoad</key>
|
<key>RunAtLoad</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>KeepAlive</key>
|
<key>KeepAlive</key>
|
||||||
<dict>
|
<true/>
|
||||||
|
<!--dict>
|
||||||
<key>Crashed</key>
|
<key>Crashed</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>SuccessfulExit</key>
|
<key>NetworkState</key>
|
||||||
<true/>
|
<true/>
|
||||||
</dict>
|
<key>SuccessfulExit</key>
|
||||||
|
<false/>
|
||||||
|
</dict-->
|
||||||
|
|
||||||
<key>SoftResourceLimits</key>
|
<key>SoftResourceLimits</key>
|
||||||
<dict>
|
<dict>
|
||||||
|
|
Loading…
Reference in New Issue