Statistics
| Branch: | Tag: | Revision:

root / devel / upload.in @ b30e35c6

History | View | Annotate | Download (2.8 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

    
30
PREFIX='@PREFIX@'
31
SYSCONFDIR='@SYSCONFDIR@'
32
PKGLIBDIR='@PKGLIBDIR@'
33

    
34
NO_RESTART=
35
NO_CRON=
36
hosts=
37
while [ "$#" -gt 0 ]; do
38
  opt="$1"
39
  case "$opt" in
40
    --no-restart)
41
      NO_RESTART=1
42
      ;;
43
    --no-cron)
44
      NO_CRON=1
45
      ;;
46
    -h|--help)
47
      echo "Usage: $0 [--no-restart] hosts..."
48
      exit 0
49
      ;;
50
    -*)
51
      echo "Unknown option: $opt" >&2
52
      exit 1
53
      ;;
54
    *)
55
      hosts="$hosts $opt"
56
      ;;
57
  esac
58
  shift
59
done
60

    
61
set ${hosts}
62

    
63
TXD=`mktemp -d`
64
trap 'rm -rf $TXD' EXIT
65

    
66
if [[ -f /proc/cpuinfo ]]; then
67
  cpu_count=$(grep -E -c '^processor[[:space:]]*:' /proc/cpuinfo)
68
  make_args=-j$(( cpu_count + 1 ))
69
else
70
  make_args=
71
fi
72

    
73
# install ganeti as a real tree
74
make $make_args install DESTDIR="$TXD"
75

    
76
# copy additional needed files
77
[ -f doc/examples/ganeti.initd ] && \
78
install -D --mode=0755 doc/examples/ganeti.initd \
79
  "$TXD/$SYSCONFDIR/init.d/ganeti"
80

    
81
[ -f doc/examples/bash_completion ] && \
82
install -D --mode=0644 doc/examples/bash_completion \
83
  "$TXD/$SYSCONFDIR/bash_completion.d/ganeti"
84

    
85
if [ -f doc/examples/ganeti.cron -a -z "$NO_CRON" ]; then
86
  install -D --mode=0644 doc/examples/ganeti.cron \
87
    "$TXD/$SYSCONFDIR/cron.d/ganeti"
88
fi
89

    
90
[ -f doc/examples/dumb-allocator ] && \
91
install -D --mode=0755 doc/examples/dumb-allocator \
92
  "$TXD/$PKGLIBDIR/iallocators/dumb"
93

    
94
echo ---
95

    
96
( cd "$TXD" && find; )
97

    
98
echo ---
99

    
100
# and now put it under $prefix on the target node(s)
101
for host; do
102
  echo Uploading code to ${host}...
103
  rsync -v -rlDc \
104
    -e "ssh -oBatchMode=yes" \
105
    --exclude="*.py[oc]" --exclude="*.pdf" --exclude="*.html" \
106
    "$TXD/" \
107
    root@${host}:/ &
108
done
109
wait
110

    
111
if test -z "${NO_RESTART}"; then
112
  for host; do
113
    echo Restarting ganeti-noded on ${host}...
114
    ssh -oBatchMode=yes root@${host} /etc/init.d/ganeti restart &
115
  done
116
  wait
117
fi