#!/bin/sh
exec 2>&1
if [ ! -f /etc/drivestrike.conf ]; then
	echo "DriveStrike not configured yet! Run `drivestrike register` as root first."
	exit 1
fi

exec drivestrike run
