From 1802877912be8e4b68541ed07d738841947463fd Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 9 Aug 2008 17:42:29 -0500 Subject: [PATCH] Removed init scripts. It will be best to let packagers write init scripts for their distributions, so I am removing them from this repository. --- initscripts/README | 8 ----- initscripts/espeakup.redhat | 58 ------------------------------------- 2 files changed, 66 deletions(-) delete mode 100644 initscripts/README delete mode 100644 initscripts/espeakup.redhat diff --git a/initscripts/README b/initscripts/README deleted file mode 100644 index 515c1c5..0000000 --- a/initscripts/README +++ /dev/null @@ -1,8 +0,0 @@ -This directory contains init scripts for espeakup for various linux -distributions. Any issues with these should be addressed directly with -the authors of the scripts as listed below. - -espeakup.redhat: This script is designed forFedora and Redhat -Enterprise linux. It was written by William Acker, who can be contacted -by email at wacker@octothorp.org. - diff --git a/initscripts/espeakup.redhat b/initscripts/espeakup.redhat deleted file mode 100644 index 400ceed..0000000 --- a/initscripts/espeakup.redhat +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh -# -# espeakup This shell script takes care of starting and stopping -# the espeakup speech systen. -# -# chkconfig: - 01 99 -# description: espeakup is a connector which acts as a bridge between \ -#the Speakup soft speech driver and the Espeak software speech system -# processname: espeakup -# pidfile: /var/run/espeakup.pid - -# Source function library. -. /etc/rc.d/init.d/functions - -[ -x /usr/bin/espeakup ] || exit 0 - -# See how we were called. -case "$1" in - start) - # Start daemon. - echo -n $"Starting espeakup speech system: " - daemon "/usr/bin/espeakup > /dev/null" - RETVAL=$? - echo - [ $RETVAL -eq 0 ] && touch /var/lock/subsys/espeakup - ;; - stop) - # Stop daemon. - echo -n $"Shutting down espeakup speech system: " - killproc espeakup - RETVAL=$? - echo - [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/espeakup - ;; - status) - status espeakup - RETVAL=$? - ;; - restart) - $0 stop - $0 start - ;; - reload) - echo -n $"Reloading espeakup: " - killproc espeakup -HUP - RETVAL=$? - echo - ;; - condrestart) - [ -f /var/lock/subsys/espeakup ] && restart || : - ;; - *) - echo $"Usage: $0 {start|stop|status|restart|reload}" - RETVAL=1 - ;; -esac - -exit $RETVAL