Statistics
| Branch: | Tag: | Revision:

root / devel / upload.in @ 94f3875d

History | View | Annotate | Download (1.9 kB)

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
TXD=`mktemp -d`
30
trap 'rm -rf $TXD' EXIT
31

    
32
# install ganeti as a real tree
33
make install DESTDIR="$TXD"
34

    
35
echo ---
36

    
37
( cd "$TXD" && find; )
38

    
39
echo ---
40

    
41
PREFIX='@PREFIX@'
42

    
43
# and now put it under $prefix on the target node(s)
44
for host; do
45
  echo Uploading code to ${host}...
46
  rsync -v -rlDc --exclude="*.py[oc]" --exclude="*.pdf" --exclude="*.html" \
47
    "$TXD/$PREFIX/" \
48
    root@${host}:$PREFIX/ &
49
done
50
wait
51

    
52
for host; do
53
  echo Uploading init script to ${host}...
54
  scp doc/examples/ganeti.initd root@${host}:/etc/init.d/ganeti &
55
done
56
wait
57

    
58
if [ -f ganeti-master-cron ]; then
59
  for host; do
60
    echo Uploading cron files to ${host}...
61
    scp ganeti-master-cron root@${host}:/etc/ganeti/master-cron &
62
  done
63
fi
64
wait
65

    
66
for host; do
67
  echo Restarting ganeti-noded on ${host}...
68
  ssh root@${host} /etc/init.d/ganeti restart &
69
done
70
wait