#!/bin/sh
# Remove an X terminal configuration
if [ ! -d $1 ] ; then
	echo xterminals-remove /var/xterminals/mac-address >&2
else
	rm -fr $1
fi

