blob: 7cba3424e92194ef6a60e942515ba7448e9c17c5 [file] [log] [blame]
Ales Komareka75a89c2014-01-19 17:50:15 +01001#!/bin/sh
2
3PATH=$PATH:/usr/local/bin:/usr/bin:/bin
4NODE_BIN=$(which nodejs||which node)
5
6if [ ! -x "$NODE_BIN" ]; then
7echo "Can't find executable nodejs or node in PATH=$PATH"
8 exit 1
9fi
10
11$NODE_BIN /srv/statsd/stats.js /etc/statsd/localConfig.js 2>&1 >> /var/log/statsd/statsd.log