]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/helpers/utils.js
Remove caching with travis
[github/Chocobozzz/PeerTube.git] / server / helpers / utils.js
1 'use strict'
2
3 var logger = require('./logger')
4
5 var utils = {
6 cleanForExit: cleanForExit
7 }
8
9 function cleanForExit (webtorrent_process) {
10 logger.info('Gracefully exiting.')
11 process.kill(-webtorrent_process.pid)
12 }
13
14 // ---------------------------------------------------------------------------
15
16 module.exports = utils