summaryrefslogtreecommitdiffstats
path: root/god/ivan/ivan-startup
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-09-02 16:52:07 +0200
committermakefu <github@syntax-fehler.de>2013-09-02 16:52:07 +0200
commitcd2185d7fccb36d0146da751a1d34bf942728794 (patch)
tree381ef0896e55c92190eefb25a156a4f2a9768356 /god/ivan/ivan-startup
parentb6ab9e12dd5422f8b65601d10955486778242ede (diff)
add natural voices with caching for ivan
Diffstat (limited to 'god/ivan/ivan-startup')
-rwxr-xr-xgod/ivan/ivan-startup18
1 files changed, 9 insertions, 9 deletions
diff --git a/god/ivan/ivan-startup b/god/ivan/ivan-startup
index 8a7f8daa..f955e1c2 100755
--- a/god/ivan/ivan-startup
+++ b/god/ivan/ivan-startup
@@ -1,29 +1,29 @@
#! /bin/sh
#
### BEGIN INIT INFO
-# Provides: evan
+# Provides: ivan
# Required-Start: $remote_fs $network
# Required-Stop: $remote_fs $network
# Should-Start: $syslog $named
# Should-Stop: $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
-# Short-Description: Start evan daemons
+# Short-Description: Start ivan daemons
# Description:
### END INIT INFO
#
# Based on Lubomir Bulej's Redhat init script.
-DAEMON="/root/bin/evan"
-PIDFILE="/var/lock/evan"
-NAME="evan"
-DESC="evan daemons"
-TCONF="/etc/evan"
+DAEMON="/krebs/bin/ivan"
+PIDFILE="/var/lock/ivan"
+NAME="ivan"
+DESC="ivan daemons"
+TCONF="/etc/ivan"
test -f $DAEMON || exit 0
-[ -r /etc/default/evan ] && . /etc/default/evan
+[ -r /etc/default/ivan ] && . /etc/default/ivan
start() {
@@ -34,7 +34,7 @@ start() {
stop() {
[ ! -e $PIDFILE ] && echo "$PIDFILE does not exist" && return
kill `cat $PIDFILE`
- #killall evan
+ #killall ivan
rm $PIDFILE
}