Merge pull request #415 from CameronNemo/patch-1

Update statsd.upstart
This commit is contained in:
Daniel Schauenberg 2014-04-14 12:28:08 -04:00
Родитель 41277abb32 9084247bca
Коммит b812cd5474
1 изменённых файлов: 6 добавлений и 4 удалений

10
debian/statsd.upstart поставляемый
Просмотреть файл

@ -15,9 +15,11 @@ setgid _statsd
respawn
respawn limit 10 5
script
NODE_BIN=$(which nodejs||which node)
chdir /usr/share/statsd
exec $NODE_BIN stats.js /etc/statsd/localConfig.js
chdir /usr/share/statsd
pre-start script
NODE_BIN=$(which nodejs || which node)
[ -n $NODE_BIN ] || { stop; exit 0; }
end script
exec $NODE_BIN stats.js /etc/statsd/localConfig.js