root / devel / upload.in @ 40476293
History | View | Annotate | Download (3.2 kB)
1 |
#!/bin/bash |
---|---|
2 |
|
3 |
# Copyright (C) 2006, 2007, 2008, 2009, 2010 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 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 |
NO_DEBUG= |
37 |
hosts= |
38 |
while [ "$#" -gt 0 ]; do |
39 |
opt="$1" |
40 |
case "$opt" in |
41 |
--no-restart) |
42 |
NO_RESTART=1 |
43 |
;; |
44 |
--no-cron) |
45 |
NO_CRON=1 |
46 |
;; |
47 |
--no-debug) |
48 |
NO_DEBUG=1 |
49 |
;; |
50 |
-h|--help) |
51 |
echo "Usage: $0 [--no-restart] hosts..." |
52 |
exit 0 |
53 |
;; |
54 |
-*) |
55 |
echo "Unknown option: $opt" >&2 |
56 |
exit 1 |
57 |
;; |
58 |
*) |
59 |
hosts="$hosts $opt" |
60 |
;; |
61 |
esac |
62 |
shift |
63 |
done |
64 |
|
65 |
set ${hosts} |
66 |
|
67 |
make regen-vcs-version |
68 |
|
69 |
TXD=`mktemp -d` |
70 |
trap 'rm -rf $TXD' EXIT |
71 |
|
72 |
if [[ -f /proc/cpuinfo ]]; then |
73 |
cpu_count=$(grep -E -c '^processor[[:space:]]*:' /proc/cpuinfo) |
74 |
make_args=-j$(( cpu_count + 1 )) |
75 |
else |
76 |
make_args= |
77 |
fi |
78 |
|
79 |
# Make sure that directories will get correct permissions |
80 |
umask 0022 |
81 |
|
82 |
# install ganeti as a real tree |
83 |
make $make_args install DESTDIR="$TXD" |
84 |
|
85 |
# copy additional needed files |
86 |
[ -f doc/examples/ganeti.initd ] && \ |
87 |
install -D --mode=0755 doc/examples/ganeti.initd \ |
88 |
"$TXD/$SYSCONFDIR/init.d/ganeti" |
89 |
|
90 |
[ -f doc/examples/ganeti.default-debug -a -z "$NO_DEBUG" ] && \ |
91 |
install -D --mode=0644 doc/examples/ganeti.default-debug \ |
92 |
"$TXD/$SYSCONFDIR/default/ganeti" |
93 |
|
94 |
[ -f doc/examples/bash_completion ] && \ |
95 |
install -D --mode=0644 doc/examples/bash_completion \ |
96 |
"$TXD/$SYSCONFDIR/bash_completion.d/ganeti" |
97 |
|
98 |
if [ -f doc/examples/ganeti.cron -a -z "$NO_CRON" ]; then |
99 |
install -D --mode=0644 doc/examples/ganeti.cron \ |
100 |
"$TXD/$SYSCONFDIR/cron.d/ganeti" |
101 |
fi |
102 |
|
103 |
[ -f doc/examples/dumb-allocator ] && \ |
104 |
install -D --mode=0755 doc/examples/dumb-allocator \ |
105 |
"$TXD/$PKGLIBDIR/iallocators/dumb" |
106 |
|
107 |
echo --- |
108 |
|
109 |
( cd "$TXD" && find; ) |
110 |
|
111 |
echo --- |
112 |
|
113 |
# and now put it under $prefix on the target node(s) |
114 |
for host; do |
115 |
echo Uploading code to ${host}... |
116 |
rsync -v -rlDc \ |
117 |
-e "ssh -oBatchMode=yes" \ |
118 |
--exclude="*.py[oc]" --exclude="*.pdf" --exclude="*.html" \ |
119 |
"$TXD/" \ |
120 |
root@${host}:/ & |
121 |
done |
122 |
wait |
123 |
|
124 |
if test -z "${NO_RESTART}"; then |
125 |
for host; do |
126 |
echo Restarting ganeti-noded on ${host}... |
127 |
ssh -oBatchMode=yes root@${host} /etc/init.d/ganeti restart & |
128 |
done |
129 |
wait |
130 |
fi |