File: init

package info (click to toggle)
canna 3.7p3-26
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,716 kB
  • sloc: ansic: 86,730; sh: 2,773; yacc: 403; cpp: 389; lex: 379; makefile: 59; awk: 7
file content (70 lines) | stat: -rw-r--r-- 1,789 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#! /bin/sh
#
# This file was automatically customized by debmake on Thu, 14 Nov 1996 01:44:07 +0900
#
# Written by Miquel van Smoorenburg <miquels@drinkel.ow.org>.
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.ai.mit.edu>.
# Modified for Debian by Christoph Lameter <clameter@debian.org>

### BEGIN INIT INFO
# Provides:          canna
# Required-Start:    $local_fs $remote_fs
# Required-Stop:     $local_fs $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: canna Japanese Input System
# Description:       Canna provides a unified user interface for inputting Japanese.
### END INIT INFO

PATH=/bin:/usr/bin:/sbin:/usr/sbin
CANNASERVER=/usr/sbin/cannaserver
CANNAKILL=/usr/bin/cannakill
CANNASTAT=/usr/bin/cannastat
CANNA_SERVER_OPT="-u canna"

if [ -e /etc/default/canna ] ; then
    . /etc/default/canna
fi

# The following value is extracted by debstd to figure out how to generate
# the postinst script. Edit the field to change the way the script is
# registered through update-rc.d (see the manpage for update-rc.d!)
FLAGS="defaults 98"

test -f $CANNASERVER || exit 0
test -f $CANNAKILL || exit 0
[ "${CANNA_SERVER_RUN}" = "no" ] && exit 0
if [ "${CANNA_ENABLE_INET}" = "yes" ] ; then
    CANNA_INET_OPT="-inet"
else
    CANNA_INET_OPT=""
fi

. /lib/lsb/init-functions

RUN_SERVER=1

case "$1" in
  start)
    echo "Starting cannaserver..."
    $CANNASERVER $CANNA_INET_OPT $CANNA_SERVER_OPT
    ;;
  stop)
    echo "Stopping cannaserver..."
    $CANNAKILL
    ;;
  force-reload|restart)
    echo "Restarting cannaserver..."
    $CANNAKILL
    $CANNASERVER $CANNA_INET_OPT $CANNA_SERVER_OPT
    ;;
  status)
    $CANNASTAT
    ;;
  *)
    echo "Usage: /etc/init.d/$0 {start|stop|restart|status}"
    exit 1
    ;;
esac

exit 0