Let upstart script handle both /usr/bin/node and .../nodejs

This commit is contained in:
Przemyslaw Wegrzyn 2013-09-17 13:27:24 +02:00
Родитель 60b15ac7b8
Коммит 5e2c400002
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -15,5 +15,9 @@ setgid _statsd
respawn
respawn limit 10 5
chdir /usr/share/statsd
exec /usr/bin/node stats.js /etc/statsd/localConfig.js
script
NODE_BIN=$(which nodejs||which node)
chdir /usr/share/statsd
exec $NODE_BIN stats.js /etc/statsd/localConfig.js
end script