#!/bin/bash

set -e

###############################################################################
#
# Remove the 'gnats' system from cron
#

if [ "$1" = remove ]; then
  crontab -u gnats -r
fi

