summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/service_manager.sh
blob: d1423a538e03640cb8f922ade5d83e02773640bd (plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/sh

# service_manager.sh - a demonstration of opie-sh
#
# Copyright (C) 2002 gonz@directbox.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# 20020524-1 - added icon to statusinfo...
# 20020518-1 - optix
# 20020517-1 - added about and fullscreen
#

OPIE_SH=/opt/QtPalmtop/bin/opie-sh
INITPATH=/etc/init.d

######################################################################
# subroutines

about() {
	( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/service_manager.png>"
	  echo "<h3>About</h3>"
	  echo "This little App should make it possible for you to "
	  echo "easily start and stop services in /etc/init.d."
	  echo "<p>"
        )  | $OPIE_SH -t service-manager -f  &
	SCREENCLEAN=$!
	sleep 1
}

cleanup() {
	kill  $SCREENCLEAN
	rm -f /tmp/qcop-msg-service_manager.sh
}

get_action() {
        # ask what to do (start/stop/status)
        #
        $OPIE_SH -m -t "Select Action"                               \
                    -M "which action do you want to do to $SERVICE ?<br>" \
                    -g -0 start -1 stop -2 status
        RETURNCODE=$?

        case $RETURNCODE in
                -1) echo unexpected input detected, exiting.
                    exit          ;;
                0)  ACTION=start  ;;
                1)  ACTION=stop   ;;
                2)  ACTION=status ;;
        esac
}

status_disclaimer() {
        # tell that init scripts are not too standard
        #
        cat | $OPIE_SH -f <<EOT
<img src=/opt/QtPalmtop/pics/opie-sh-scripts/service_manager.png>
<h3>status has been disabled</h3>

        the status service has been disabled
        because it is not supported by the 
        most init scripts that come with 
        familiar ...<p>

        perhaps it will be replaced with 
        something more useful in the future...
EOT
}

select_service() {
        # present service list and choose
        #
        cd $INITPATH/
        SERVICE=` ls -1 | $OPIE_SH -i -l \
                      -g -t "Select Service" \
                      `
        cd -
}

######################################################################
# main

about
select_service
get_action

if [ "$SERVICE" = "" ]
then    cleanup ; exit
fi

if [ "$ACTION" = "status" ]
then    status_disclaimer
else    ( echo "<h3>Output of $INITPATH/$SERVICE $ACTION:</h3>"
	  echo "<pre>"
          $INITPATH/$SERVICE $ACTION
          echo "</pre><p>"
          echo done.
        ) | $OPIE_SH -f
fi

cleanup