devel/upload: Add --no-restart option
[ganeti-local] / devel / upload.in
1 #!/bin/bash
2
3 # Copyright (C) 2006, 2007 Google Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 # 02110-1301, USA.
19
20 # This is a test script to ease development and testing on test clusters.
21 # It should not be used to update production environments.
22
23 # Usage: upload.sh node-{1,2,3}
24 # it will upload the python libraries to
25 # $prefix/lib/python2.4/site-packages/ganeti and the command line utils to
26 # $prefix/sbin. It needs passwordless root login to the nodes.
27
28 set -e
29
30 NO_RESTART=
31 hosts=
32 while [ "$#" -gt 0 ]; do
33   opt="$1"
34   case "$opt" in
35     --no-restart)
36       NO_RESTART=1
37     ;;
38     -*)
39       echo "Unknown option: $opt" >&2
40       exit 1
41     ;;
42     *)
43       hosts="$hosts $opt"
44     ;;
45   esac
46   shift
47 done
48
49 set ${hosts}
50
51 TXD=`mktemp -d`
52 trap 'rm -rf $TXD' EXIT
53
54 # install ganeti as a real tree
55 make install DESTDIR="$TXD"
56
57 echo ---
58
59 ( cd "$TXD" && find; )
60
61 echo ---
62
63 PREFIX='@PREFIX@'
64
65 # and now put it under $prefix on the target node(s)
66 for host; do
67   echo Uploading code to ${host}...
68   rsync -v -rlDc --exclude="*.py[oc]" --exclude="*.pdf" --exclude="*.html" \
69     "$TXD/$PREFIX/" \
70     root@${host}:$PREFIX/ &
71 done
72 wait
73
74 for host; do
75   echo Uploading init script to ${host}...
76   scp doc/examples/ganeti.initd root@${host}:/etc/init.d/ganeti &
77 done
78 wait
79
80 if [ -f ganeti-master-cron ]; then
81   for host; do
82     echo Uploading cron files to ${host}...
83     scp ganeti-master-cron root@${host}:/etc/ganeti/master-cron &
84   done
85 fi
86 wait
87
88 if test -z "${NO_RESTART}"; then
89   for host; do
90     echo Restarting ganeti-noded on ${host}...
91     ssh root@${host} /etc/init.d/ganeti restart &
92   done
93   wait
94 fi