Statistics
| Branch: | Tag: | Revision:

root / devel / upload @ 1a732a74

History | View | Annotate | Download (3.7 kB)

1
#!/bin/bash
2

    
3
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2012, 2013 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.X/dist-packages/ganeti and the command line utils to
26
# $prefix/sbin. It needs passwordless root login to the nodes.
27

    
28
set -e -u
29

    
30
usage() {
31
  echo "Usage: $0 [--no-restart] [--no-cron] [--no-debug] hosts..." >&2
32
  exit $1
33
}
34

    
35
declare -r SED="sed -f autotools/replace_vars.sed"
36

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

    
67
if [ -z "$hosts" ]; then
68
  usage 1
69
fi
70

    
71
set ${hosts}
72

    
73
make regen-vcs-version
74

    
75
TXD=`mktemp -d`
76
trap 'rm -rf $TXD' EXIT
77

    
78
if [[ -f /proc/cpuinfo ]]; then
79
  cpu_count=$(grep -E -c '^processor[[:space:]]*:' /proc/cpuinfo)
80
  make_args=-j$(( cpu_count + 1 ))
81
else
82
  make_args=
83
fi
84

    
85
# Make sure that directories will get correct permissions
86
umask 0022
87

    
88
# install ganeti as a real tree
89
make $make_args install DESTDIR="$TXD"
90

    
91
# at this point, make has been finished, so the configuration is
92
# fixed; we can read the prefix vars/etc.
93
PREFIX="$(echo @PREFIX@ | $SED)"
94
SYSCONFDIR="$(echo @SYSCONFDIR@ | $SED)"
95
LIBDIR="$(echo @LIBDIR@ | $SED)"
96
PKGLIBDIR="$(echo @PKGLIBDIR@ | $SED)"
97

    
98
# copy additional needed files
99
[ -f doc/examples/ganeti.initd ] && \
100
install -D --mode=0755 doc/examples/ganeti.initd \
101
  "$TXD/$SYSCONFDIR/init.d/ganeti"
102

    
103
[ -f doc/examples/ganeti-master-role.ocf ] && \
104
install -D --mode=0755 doc/examples/ganeti-master-role.ocf \
105
  "$TXD/$LIBDIR/ocf/resource.d/ganeti/ganeti-master-role"
106

    
107
[ -f doc/examples/ganeti-node-role.ocf ] && \
108
install -D --mode=0755 doc/examples/ganeti-node-role.ocf \
109
  "$TXD/$LIBDIR/ocf/resource.d/ganeti/ganeti-node-role"
110

    
111
[ -f doc/examples/ganeti.default-debug -a -z "$NO_DEBUG" ] && \
112
install -D --mode=0644 doc/examples/ganeti.default-debug \
113
  "$TXD/$SYSCONFDIR/default/ganeti"
114

    
115
[ -f doc/examples/bash_completion-debug ] && \
116
install -D --mode=0644 doc/examples/bash_completion-debug \
117
  "$TXD/$SYSCONFDIR/bash_completion.d/ganeti"
118

    
119
if [ -f doc/examples/ganeti.cron -a -z "$NO_CRON" ]; then
120
  install -D --mode=0644 doc/examples/ganeti.cron \
121
    "$TXD/$SYSCONFDIR/cron.d/ganeti"
122
fi
123

    
124
echo ---
125

    
126
( cd "$TXD" && find; )
127

    
128
echo ---
129

    
130
# and now put it under $prefix on the target node(s)
131
for host; do
132
  echo Uploading code to ${host}...
133
  rsync -v -rlDc \
134
    -e "ssh -oBatchMode=yes" \
135
    --exclude="*.py[oc]" --exclude="*.pdf" --exclude="*.html" \
136
    "$TXD/" \
137
    root@${host}:/ &
138
done
139
wait
140

    
141
if test -z "${NO_RESTART}"; then
142
  for host; do
143
    echo Restarting ganeti-noded on ${host}...
144
    ssh -oBatchMode=yes root@${host} $SYSCONFDIR/init.d/ganeti restart &
145
  done
146
  wait
147
fi