diff options
Diffstat (limited to 'netconf-service/index.js')
-rw-r--r-- | netconf-service/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/netconf-service/index.js b/netconf-service/index.js index 00ffcea6..494e819f 100644 --- a/netconf-service/index.js +++ b/netconf-service/index.js @@ -565,13 +565,13 @@ process.stdin.on('readable',function() { } }); process.stdin.on('end',function() { - //process.exit(0); + process.exit(0); }); process.stdin.on('close',function() { - //process.exit(0); + process.exit(0); }); process.stdin.on('error',function() { - //process.exit(0); + process.exit(0); }); // Tell ZeroTier One that the service is running, solicit netconf-init |