#!/bin/sh
set -e

# Remove old style of crontab insertion if present
if ! grep -q "^#-- mgetty" /etc/crontab; then
	cp /etc/crontab /tmp/$$
	sed </tmp/$$ >/etc/crontab -e "/root faxrunq/d"
	rm /tmp/$$
fi

