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