#!/bin/sh
set -e
test -f /usr/sbin/tpconfig || exit 0

# You will want to set your own options below.  See tpconfig(8)
OPTIONS="-q"

case "$1" in
    start | restart | force-reload)
	echo -n "Configuring touchpad..."
	tpconfig $OPTIONS
	echo "done."
	;;
    stop)
	;;
    *)
	echo "Usage: $0 {start|stop|restart|force-reload}"
	exit 1
	;;
esac
