~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to etc/init.d/canna

  • Committer: Dimitri John Ledkov
  • Date: 2014-05-06 18:45:46 UTC
  • Revision ID: dimitri.ledkov@canonical.com-20140506184546-5toyx56xxrue0f0v
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
#
3
 
# This file was automatically customized by debmake on Thu, 14 Nov 1996 01:44:07 +0900
4
 
#
5
 
# Written by Miquel van Smoorenburg <miquels@drinkel.ow.org>.
6
 
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.ai.mit.edu>.
7
 
# Modified for Debian by Christoph Lameter <clameter@debian.org>
8
 
 
9
 
### BEGIN INIT INFO
10
 
# Provides:          canna
11
 
# Required-Start:    $local_fs $remote_fs
12
 
# Required-Stop:     $local_fs $remote_fs
13
 
# Default-Start:     2 3 4 5
14
 
# Default-Stop:      0 1 6
15
 
# Short-Description: canna Japanese Input System
16
 
# Description:       Canna provides a unified user interface for inputting Japanese.
17
 
### END INIT INFO
18
 
 
19
 
PATH=/bin:/usr/bin:/sbin:/usr/sbin
20
 
CANNASERVER=/usr/sbin/cannaserver
21
 
CANNAKILL=/usr/bin/cannakill
22
 
CANNA_SERVER_OPT="-u canna"
23
 
 
24
 
if [ -e /etc/default/canna ] ; then
25
 
    . /etc/default/canna
26
 
fi
27
 
 
28
 
# The following value is extracted by debstd to figure out how to generate
29
 
# the postinst script. Edit the field to change the way the script is
30
 
# registered through update-rc.d (see the manpage for update-rc.d!)
31
 
FLAGS="defaults 98"
32
 
 
33
 
test -f $CANNASERVER || exit 0
34
 
test -f $CANNAKILL || exit 0
35
 
[ "${CANNA_SERVER_RUN}" = "no" ] && exit 0
36
 
if [ "${CANNA_ENABLE_INET}" = "yes" ] ; then
37
 
    CANNA_INET_OPT="-inet"
38
 
else
39
 
    CANNA_INET_OPT=""
40
 
fi
41
 
 
42
 
RUN_SERVER=1
43
 
 
44
 
case "$1" in
45
 
  start)
46
 
    echo "Starting cannaserver..."
47
 
    $CANNASERVER $CANNA_INET_OPT $CANNA_SERVER_OPT
48
 
    ;;
49
 
  stop)
50
 
    echo "Stopping cannaserver..."
51
 
    $CANNAKILL
52
 
    ;;
53
 
  force-reload|restart)
54
 
    echo "Restarting cannaserver..."
55
 
    $CANNAKILL
56
 
    $CANNASERVER $CANNA_INET_OPT $CANNA_SERVER_OPT
57
 
    ;;
58
 
  *)
59
 
    echo "Usage: /etc/init.d/$0 {start|stop|restart}"
60
 
    exit 1
61
 
    ;;
62
 
esac
63
 
 
64
 
exit 0