source: bootscripts-standard/cblfs/init.d/gpm@ 3164f4b

Last change on this file since 3164f4b was 7df280d, checked in by Joe Ciccone <jciccone@…>, 17 years ago

Change /bin/sh to /bin/bash in the bootscripts because the bootscripts use bashisms. Having ash linked to sh will cause errors. Thanks to Bigdassaved for providing the diff and Copper for bring up the issue.

  • Property mode set to 100644
File size: 1002 bytes
RevLine 
[7df280d]1#!/bin/bash
[7125722]2# Begin $rc_base/init.d/gpm
3
4# Based on sysklogd script from LFS-3.1 and earlier.
5# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6# GPM specific parts by Mark Hymers - markh@linuxfromscratch.org
7
8#$LastChangedBy: dnicholson $
9#$Date: 2006-10-11 02:42:17 -0500 (Wed, 11 Oct 2006) $
10
11. /etc/sysconfig/rc
12. $rc_functions
13
[1680407]14pidfile=/var/run/gpm.pid
15
[7125722]16if [ -f /etc/sysconfig/mouse ]
17 then
18 . /etc/sysconfig/mouse
19fi
20
21if [ -z "$MDEVICE" ] || [ -z "$PROTOCOL" ]
22 then
23 echo "Please create an /etc/sysconfig/mouse file containing"
24 echo "MDEVICE and PROTOCOL values"
25 exit 1;
26fi
27
28case "$1" in
29 start)
30 boot_mesg "Starting gpm..."
[1680407]31 loadproc -p $pidfile /usr/sbin/gpm -m $MDEVICE -t $PROTOCOL $GPMOPTS
[7125722]32 ;;
33
34 stop)
35 boot_mesg "Stopping gpm..."
[1680407]36 killproc -p $pidfile /usr/sbin/gpm
[7125722]37 ;;
38
39 restart)
40 $0 stop
41 sleep 1
42 $0 start
43 ;;
44
45 status)
[1680407]46 statusproc -p $pidfile /usr/sbin/gpm
[7125722]47 ;;
48
49 *)
50 echo "Usage: $0 {start|stop|restart|status}"
51 exit 1
52 ;;
53esac
54
55# End $rc_base/init.d/gpm
Note: See TracBrowser for help on using the repository browser.