#!/bin/sh
if ! [ "$(id -u)" = 0 ]
then
  echo 'Please execute this as root.'
  exit 1
fi
su -c "/usr/libexec/takahe/manage.py $@" -s '/bin/sh' _takahe
