#!/usr/bin/env bash
if ! id | grep -q '(cuckoo)' && ! [ $EUID -eq 0 ] ; then
  echo "==> Add yourself to the cuckoo group to use cuckoo as an unprivledged user."
  exit 1
fi
cd /usr/share/cuckoo
python2 cuckoo.py "$@"
