#!/bin/sh #gpm des systemvinit prozesses #Script Framework - Automatisiertes Erzeugen der Monsum Linux Distribution #(c) Rainmaker MultiMedia OHG # #$Author$ #$Date$ #$Revision$ # source /etc/init.d/functions case "$1" in start) echo -n "Starting gpm console mouse driver" /usr/sbin/gpm -A -m /dev/input/mice -t imps2 -p evaluate_retval ;; stop) echo -n "Stopping cupsd" /usr/sbin/gpm -k evaluate_retval ;; restart) $0 stop sleep 1 $0 start ;; *) echo "Usage: $0 {start|stop|reload|restart|status}" exit 1 ;; esac