3 # Copyright (C) 2006, 2007, 2008, 2009, 2010, 2012 Google Inc.
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.
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.
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
20 # This is a test script to ease development and testing on test clusters.
21 # It should not be used to update production environments.
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.
31 echo "Usage: $0 [--no-restart] [--no-cron] [--no-debug] hosts..." >&2
36 SYSCONFDIR='@SYSCONFDIR@'
37 PKGLIBDIR='@PKGLIBDIR@'
43 while [ "$#" -gt 0 ]; do
59 echo "Unknown option: $opt" >&2
69 if [ -z "$hosts" ]; then
75 make regen-vcs-version
78 trap 'rm -rf $TXD' EXIT
80 if [[ -f /proc/cpuinfo ]]; then
81 cpu_count=$(grep -E -c '^processor[[:space:]]*:' /proc/cpuinfo)
82 make_args=-j$(( cpu_count + 1 ))
87 # Make sure that directories will get correct permissions
90 # install ganeti as a real tree
91 make $make_args install DESTDIR="$TXD"
93 # copy additional needed files
94 [ -f doc/examples/ganeti.initd ] && \
95 install -D --mode=0755 doc/examples/ganeti.initd \
96 "$TXD/$SYSCONFDIR/init.d/ganeti"
98 [ -f doc/examples/ganeti.default-debug -a -z "$NO_DEBUG" ] && \
99 install -D --mode=0644 doc/examples/ganeti.default-debug \
100 "$TXD/$SYSCONFDIR/default/ganeti"
102 [ -f doc/examples/bash_completion-debug ] && \
103 install -D --mode=0644 doc/examples/bash_completion-debug \
104 "$TXD/$SYSCONFDIR/bash_completion.d/ganeti"
106 if [ -f doc/examples/ganeti.cron -a -z "$NO_CRON" ]; then
107 install -D --mode=0644 doc/examples/ganeti.cron \
108 "$TXD/$SYSCONFDIR/cron.d/ganeti"
113 ( cd "$TXD" && find; )
117 # and now put it under $prefix on the target node(s)
119 echo Uploading code to ${host}...
121 -e "ssh -oBatchMode=yes" \
122 --exclude="*.py[oc]" --exclude="*.pdf" --exclude="*.html" \
128 if test -z "${NO_RESTART}"; then
130 echo Restarting ganeti-noded on ${host}...
131 ssh -oBatchMode=yes root@${host} $SYSCONFDIR/init.d/ganeti restart &