PeerTube/server/helpers/utils.js

17 lines
326 B
JavaScript
Raw Normal View History

'use strict'
2015-06-09 17:41:40 +02:00
2016-03-16 22:29:27 +01:00
const logger = require('./logger')
2015-06-09 17:41:40 +02:00
2016-03-16 22:29:27 +01:00
const utils = {
cleanForExit: cleanForExit
}
2015-06-09 17:41:40 +02:00
function cleanForExit (webtorrent_process) {
logger.info('Gracefully exiting.')
process.kill(-webtorrent_process.pid)
}
// ---------------------------------------------------------------------------
2016-01-31 11:23:52 +01:00
module.exports = utils