PeerTube/helpers/utils.js

19 lines
365 B
JavaScript
Raw Normal View History

2015-06-09 17:41:40 +02:00
;(function () {
'use strict'
var logger = require('./logger')
2016-01-31 11:23:52 +01:00
var utils = {
2016-02-05 18:03:20 +01:00
cleanForExit: cleanForExit
2015-06-09 17:41:40 +02:00
}
2016-01-31 11:23:52 +01:00
function cleanForExit (webtorrent_process) {
2016-02-05 19:02:05 +01:00
logger.info('Gracefully exiting.')
process.kill(-webtorrent_process.pid)
}
2016-01-31 11:23:52 +01:00
// ---------------------------------------------------------------------------
2015-06-09 17:41:40 +02:00
module.exports = utils
})()