#! /bin/sh

# gpm: start gpm

. init-script-lib

case $1 in 
	start)
		need filekeeping
		fatal gpm -t ps2
		;;
	stop)
		fatal gpm -k
		;;
esac
