#!/bin/sh
if test $EUID != 0 ; then
  echo 'Must be run as root.'
  exit 1
fi
exec python /usr/share/artillery/artillery.py "$@"
