* tentative merge of onelab myplc
[myplc.git] / guest.init
1 #!/bin/bash
2 #
3 # plc   Manages all PLC services on this machine
4 #
5 # chkconfig: 2345 5 99
6 #
7 # description:  Manages all PLC services on this machine
8 #
9 # $Id: guest.init 635 2007-07-05 11:08:14Z thierry $
10 #
11
12 # Source function library and configuration
13 . /etc/plc.d/functions
14
15 # Verbosity
16 verbose=0
17
18 # All steps should be idempotent. This means that you should be able
19 # to run them multiple times without depending on anything previously
20 # being run. The idea is that when the configuration changes, "service
21 # plc restart" is called, all dependencies are fixed up, and
22 # everything just works.
23
24 ### NOTE.
25 # we want the resulting myplc to be able to easily skip
26 # some steps. e.g. the packages step takes ages if you install
27 # all rpms under the repository.
28 # We skip steps whose name contains a dot (.) or a tilde (~)
29 # this way the operations would just rename a step name e.g.
30 # cd /etc/plc.d
31 # mv packages packages.hide
32 #
33 # The drawback is, this stuff does not survive an rpm update
34 # but that's maybe a good thing, that all is done at first start
35 ###
36
37 steps=($(
38 for step in /etc/plc.d/* ; do
39     stepname=$(basename $step)
40     plainstepname=$(echo $stepname | sed -e 's,\.,,' -e 's,~,,')
41     if [ -f $step -a -x $step -a "$stepname" = "$plainstepname" ] ; then
42         priority=$(sed -ne 's/# priority: \(.*\)/\1/p' $step)
43         echo $priority $stepname
44     fi
45 done | sort -n | cut -d' ' -f2
46 ))
47 nsteps=${#steps[@]}
48
49 # Regenerate configuration files
50 reload ()
51 {
52     force=$1
53
54     # Regenerate the main configuration file from default values
55     # overlaid with site-specific and current values.
56     # Thierry -- 2007-07-05 : values in plc_config.xml are *not* taken into account here
57     files=(
58         /etc/planetlab/default_config.xml 
59         /etc/planetlab/configs/site.xml
60     )
61     for file in "${files[@]}" ; do
62         if [ -n "$force" -o $file -nt /etc/planetlab/plc_config.xml ] ; then
63             tmp=$(mktemp /tmp/plc_config.xml.XXXXXX)
64             plc-config --xml "${files[@]}" >$tmp
65             if [ $? -eq 0 ] ; then
66                 mv $tmp /etc/planetlab/plc_config.xml
67                 chmod 444 /etc/planetlab/plc_config.xml
68             else
69                 echo "PLC: Warning: Invalid configuration file(s) detected"
70                 rm -f $tmp
71             fi
72             break
73         fi
74     done
75
76     # Convert configuration to various formats
77     if [ -n "$force" -o /etc/planetlab/plc_config.xml -nt /etc/planetlab/plc_config ] ; then
78         plc-config --shell >/etc/planetlab/plc_config
79     fi
80     if [ -n "$force" -o /etc/planetlab/plc_config.xml -nt /etc/planetlab/php/plc_config.php ] ; then
81         mkdir -p /etc/planetlab/php
82         plc-config --php >/etc/planetlab/php/plc_config.php
83     fi
84 }
85
86 usage()
87 {
88     echo "Usage: $0 [OPTION]... [COMMAND] [STEP]..."
89     echo "      -v              Be verbose"
90     echo "      -h              This message"
91     echo
92     echo "Commands:"
93     echo "      start           Start all PLC subsystems"
94     echo "      stop            Stop all PLC subsystems"
95     echo "      reload          Regenerate configuration files"
96     echo "      restart         Restart all PLC subsystems"
97     echo
98     echo "Steps:"
99     for step in "${steps[@]}" ; do
100         if [ -x /etc/plc.d/$step ] ; then
101             echo "      $(basename $step)"
102         fi
103     done
104     exit 1
105 }
106
107 # Get options
108 while getopts "vh" opt ; do
109     case $opt in
110         v)
111             verbose=1
112             ;;
113         h|*)
114             usage
115             ;;
116     esac
117 done
118
119 # Redirect stdout and stderr of each step to /var/log/boot.log
120 if [ $verbose -eq 0 ] ; then
121     touch /var/log/boot.log
122     chmod 600 /var/log/boot.log
123     exec 1>>/var/log/boot.log
124     exec 2>>/var/log/boot.log
125 fi
126
127 # Get command
128 shift $(($OPTIND - 1))
129 if [ -z "$1" ] ; then
130     usage
131 fi
132 command=$1
133
134 # Get step(s)
135 shift 1
136 if [ -z "$1" ] ; then
137     # Start or stop everything. Regenerate configuration first.
138     reload force
139 else
140     # Start or stop a particular step
141     steps=("$@")
142     nsteps=${#steps[@]}
143 fi
144
145 RETVAL=0
146
147 start ()
148 {
149     for step in "${steps[@]}" ; do
150         if [ -x /etc/plc.d/$step ] ; then
151             /etc/plc.d/$step start
152             # Steps may alter the configuration, may need to regenerate
153             reload
154         else
155             echo "PLC: $step: unrecognized step" >&4
156             exit 1
157         fi
158     done
159 }
160
161 stop ()
162 {
163     for i in $(seq 1 $nsteps) ; do
164         step=${steps[$(($nsteps - $i))]}
165         if [ -x /etc/plc.d/$step ] ; then
166             /etc/plc.d/$step stop
167             # Steps may alter the configuration, may need to regenerate
168             reload
169         else
170             echo "PLC: $step: unrecognized step" >&4
171             exit 1
172         fi
173     done
174 }
175
176 case "$command" in
177     start|stop)
178         $command
179         ;;
180
181     restart)
182         stop
183         start
184         ;;
185
186     reload)
187         reload force
188         ;;
189
190     *)
191         usage >&3
192         ;;
193 esac
194
195 exit $RETVAL