All pastes #2108376 Raw Edit

Anonymous

public text v1 · immutable
#2108376 ·published 2012-01-31 23:03 UTC
rendered paste body
#!/bin/bash
# init script for carbon

case "$1" in
  start)
        /opt/graphite/bin/carbon-cache.py start
        /opt/graphite/bin/carbon-relay.py start
        ;;
  stop)
        /opt/graphite/bin/carbon-cache.py stop
        /opt/graphite/bin/carbon-relay.py stop
        ;;
  status)
        /opt/graphite/bin/carbon-cache.py status
        /opt/graphite/bin/carbon-relay.py status
        ;;
  restart)
        /opt/graphite/bin/carbon-cache.py stop
        /opt/graphite/bin/carbon-relay.py stop
        sleep 5
        /opt/graphite/bin/carbon-cache.py start
        /opt/graphite/bin/carbon-relay.py start
        ;;
  *)
        echo $"Usage: $0 {start|stop|restart|status}"
        exit 2
esac