blob: 85ff42024c4794903475cfc1f4125df32c72ddc5 [file] [log] [blame]
Dean Troyer7f9aa712012-01-31 12:11:56 -06001# functions - Common functions used by DevStack components
Dean Troyer13dc5cc2012-03-27 14:50:45 -05002#
Dean Troyer4a43b7b2012-08-28 17:43:40 -05003# The following variables are assumed to be defined by certain functions:
Dean Troyer4a43b7b2012-08-28 17:43:40 -05004# ``ENABLED_SERVICES``
5# ``EROR_ON_CLONE``
6# ``FILES``
7# ``GLANCE_HOSTPORT``
8# ``OFFLINE``
9# ``PIP_DOWNLOAD_CACHE``
Maru Newby3a87edd2012-10-25 23:01:06 +000010# ``PIP_USE_MIRRORS``
Dean Troyer4a43b7b2012-08-28 17:43:40 -050011# ``RECLONE``
12# ``TRACK_DEPENDS``
13# ``http_proxy``, ``https_proxy``, ``no_proxy``
Dean Troyer13dc5cc2012-03-27 14:50:45 -050014
Dean Troyer7f9aa712012-01-31 12:11:56 -060015
Dean Troyer27e32692012-03-16 16:16:56 -050016# Save trace setting
17XTRACE=$(set +o | grep xtrace)
18set +o xtrace
19
Dean Troyer7f9aa712012-01-31 12:11:56 -060020
Dean Troyer4a43b7b2012-08-28 17:43:40 -050021# Exit 0 if address is in network or 1 if address is not in
22# network or netaddr library is not installed.
23# address_in_net ip-address ip-range
Vishvananda Ishayac9ad14b2012-07-03 20:29:01 +000024function address_in_net() {
25 python -c "
26import netaddr
27import sys
28sys.exit(netaddr.IPAddress('$1') not in netaddr.IPNetwork('$2'))
29"
30}
31
32
Dean Troyer4a43b7b2012-08-28 17:43:40 -050033# Wrapper for ``apt-get`` to set cache and proxy environment variables
34# Uses globals ``OFFLINE``, ``*_proxy`
Dean Troyer13dc5cc2012-03-27 14:50:45 -050035# apt_get operation package [package ...]
Dean Troyer7f9aa712012-01-31 12:11:56 -060036function apt_get() {
Dean Troyerd0b21e22012-03-07 14:52:25 -060037 [[ "$OFFLINE" = "True" || -z "$@" ]] && return
Dean Troyer7f9aa712012-01-31 12:11:56 -060038 local sudo="sudo"
39 [[ "$(id -u)" = "0" ]] && sudo="env"
40 $sudo DEBIAN_FRONTEND=noninteractive \
41 http_proxy=$http_proxy https_proxy=$https_proxy \
Osamu Habuka7abe4f22012-07-25 12:39:32 +090042 no_proxy=$no_proxy \
Dean Troyer7f9aa712012-01-31 12:11:56 -060043 apt-get --option "Dpkg::Options::=--force-confold" --assume-yes "$@"
44}
45
46
47# Gracefully cp only if source file/dir exists
48# cp_it source destination
49function cp_it {
50 if [ -e $1 ] || [ -d $1 ]; then
51 cp -pRL $1 $2
52 fi
53}
54
55
Dean Troyer27e32692012-03-16 16:16:56 -050056# Prints "message" and exits
57# die "message"
58function die() {
Dean Troyer489bd2a2012-03-02 10:44:29 -060059 local exitcode=$?
Dean Troyer27e32692012-03-16 16:16:56 -050060 set +o xtrace
61 echo $@
62 exit $exitcode
Dean Troyer489bd2a2012-03-02 10:44:29 -060063}
64
65
66# Checks an environment variable is not set or has length 0 OR if the
67# exit code is non-zero and prints "message" and exits
68# NOTE: env-var is the variable name without a '$'
69# die_if_not_set env-var "message"
70function die_if_not_set() {
Dean Troyer27e32692012-03-16 16:16:56 -050071 (
72 local exitcode=$?
73 set +o xtrace
74 local evar=$1; shift
75 if ! is_set $evar || [ $exitcode != 0 ]; then
76 set +o xtrace
77 echo $@
78 exit -1
79 fi
80 )
Dean Troyer489bd2a2012-03-02 10:44:29 -060081}
82
83
84# Grab a numbered field from python prettytable output
85# Fields are numbered starting with 1
86# Reverse syntax is supported: -1 is the last field, -2 is second to last, etc.
87# get_field field-number
88function get_field() {
89 while read data; do
90 if [ "$1" -lt 0 ]; then
91 field="(\$(NF$1))"
92 else
93 field="\$$(($1 + 1))"
94 fi
95 echo "$data" | awk -F'[ \t]*\\|[ \t]*' "{print $field}"
96 done
97}
98
99
Dean Troyer7e270512012-06-14 15:23:24 -0500100# get_packages() collects a list of package names of any type from the
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500101# prerequisite files in ``files/{apts|rpms}``. The list is intended
102# to be passed to a package installer such as apt or yum.
Dean Troyer7e270512012-06-14 15:23:24 -0500103#
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500104# Only packages required for the services in ``ENABLED_SERVICES`` will be
Dean Troyer7e270512012-06-14 15:23:24 -0500105# included. Two bits of metadata are recognized in the prerequisite files:
106# - ``# NOPRIME`` defers installation to be performed later in stack.sh
107# - ``# dist:DISTRO`` or ``dist:DISTRO1,DISTRO2`` limits the selection
108# of the package to the distros listed. The distro names are case insensitive.
109#
Vincent Untz855c5872012-10-04 13:36:46 +0200110# Uses globals ``ENABLED_SERVICES``
Dean Troyer7e270512012-06-14 15:23:24 -0500111# get_packages dir
112function get_packages() {
113 local package_dir=$1
114 local file_to_parse
115 local service
116
117 if [[ -z "$package_dir" ]]; then
118 echo "No package directory supplied"
119 return 1
120 fi
121 if [[ -z "$DISTRO" ]]; then
Vincent Untz855c5872012-10-04 13:36:46 +0200122 GetDistro
Dean Troyer7e270512012-06-14 15:23:24 -0500123 fi
124 for service in general ${ENABLED_SERVICES//,/ }; do
125 # Allow individual services to specify dependencies
126 if [[ -e ${package_dir}/${service} ]]; then
127 file_to_parse="${file_to_parse} $service"
128 fi
129 # NOTE(sdague) n-api needs glance for now because that's where
130 # glance client is
131 if [[ $service == n-api ]]; then
132 if [[ ! $file_to_parse =~ nova ]]; then
133 file_to_parse="${file_to_parse} nova"
134 fi
135 if [[ ! $file_to_parse =~ glance ]]; then
136 file_to_parse="${file_to_parse} glance"
137 fi
138 elif [[ $service == c-* ]]; then
139 if [[ ! $file_to_parse =~ cinder ]]; then
140 file_to_parse="${file_to_parse} cinder"
141 fi
John H. Tran93361642012-07-26 11:22:05 -0700142 elif [[ $service == ceilometer-* ]]; then
143 if [[ ! $file_to_parse =~ ceilometer ]]; then
144 file_to_parse="${file_to_parse} ceilometer"
145 fi
Dean Troyer7e270512012-06-14 15:23:24 -0500146 elif [[ $service == n-* ]]; then
147 if [[ ! $file_to_parse =~ nova ]]; then
148 file_to_parse="${file_to_parse} nova"
149 fi
150 elif [[ $service == g-* ]]; then
151 if [[ ! $file_to_parse =~ glance ]]; then
152 file_to_parse="${file_to_parse} glance"
153 fi
154 elif [[ $service == key* ]]; then
155 if [[ ! $file_to_parse =~ keystone ]]; then
156 file_to_parse="${file_to_parse} keystone"
157 fi
Robert Collins0a9954f2012-11-20 11:34:25 +1300158 elif [[ $service == q-* ]]; then
159 if [[ ! $file_to_parse =~ quantum ]]; then
160 file_to_parse="${file_to_parse} quantum"
161 fi
Dean Troyer7e270512012-06-14 15:23:24 -0500162 fi
163 done
164
165 for file in ${file_to_parse}; do
166 local fname=${package_dir}/${file}
167 local OIFS line package distros distro
168 [[ -e $fname ]] || continue
169
170 OIFS=$IFS
171 IFS=$'\n'
172 for line in $(<${fname}); do
173 if [[ $line =~ "NOPRIME" ]]; then
174 continue
175 fi
176
177 if [[ $line =~ (.*)#.*dist:([^ ]*) ]]; then
178 # We are using BASH regexp matching feature.
179 package=${BASH_REMATCH[1]}
180 distros=${BASH_REMATCH[2]}
181 # In bash ${VAR,,} will lowecase VAR
182 [[ ${distros,,} =~ ${DISTRO,,} ]] && echo $package
183 continue
184 fi
185
186 echo ${line%#*}
187 done
188 IFS=$OIFS
189 done
190}
191
192
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500193# Determine OS Vendor, Release and Update
194# Tested with OS/X, Ubuntu, RedHat, CentOS, Fedora
195# Returns results in global variables:
196# os_VENDOR - vendor name
197# os_RELEASE - release
198# os_UPDATE - update
199# os_PACKAGE - package type
200# os_CODENAME - vendor's codename for release
201# GetOSVersion
202GetOSVersion() {
203 # Figure out which vendor we are
204 if [[ -n "`which sw_vers 2>/dev/null`" ]]; then
205 # OS/X
206 os_VENDOR=`sw_vers -productName`
207 os_RELEASE=`sw_vers -productVersion`
208 os_UPDATE=${os_RELEASE##*.}
209 os_RELEASE=${os_RELEASE%.*}
210 os_PACKAGE=""
211 if [[ "$os_RELEASE" =~ "10.7" ]]; then
212 os_CODENAME="lion"
213 elif [[ "$os_RELEASE" =~ "10.6" ]]; then
214 os_CODENAME="snow leopard"
215 elif [[ "$os_RELEASE" =~ "10.5" ]]; then
216 os_CODENAME="leopard"
217 elif [[ "$os_RELEASE" =~ "10.4" ]]; then
218 os_CODENAME="tiger"
219 elif [[ "$os_RELEASE" =~ "10.3" ]]; then
220 os_CODENAME="panther"
221 else
222 os_CODENAME=""
223 fi
224 elif [[ -x $(which lsb_release 2>/dev/null) ]]; then
225 os_VENDOR=$(lsb_release -i -s)
226 os_RELEASE=$(lsb_release -r -s)
227 os_UPDATE=""
228 if [[ "Debian,Ubuntu" =~ $os_VENDOR ]]; then
229 os_PACKAGE="deb"
Vincent Untz856a11e2012-11-21 16:04:12 +0100230 elif [[ "SUSE LINUX" =~ $os_VENDOR ]]; then
231 lsb_release -d -s | grep -q openSUSE
232 if [[ $? -eq 0 ]]; then
233 os_VENDOR="openSUSE"
234 fi
235 os_PACKAGE="rpm"
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500236 else
237 os_PACKAGE="rpm"
238 fi
239 os_CODENAME=$(lsb_release -c -s)
240 elif [[ -r /etc/redhat-release ]]; then
241 # Red Hat Enterprise Linux Server release 5.5 (Tikanga)
242 # CentOS release 5.5 (Final)
243 # CentOS Linux release 6.0 (Final)
244 # Fedora release 16 (Verne)
245 os_CODENAME=""
246 for r in "Red Hat" CentOS Fedora; do
247 os_VENDOR=$r
248 if [[ -n "`grep \"$r\" /etc/redhat-release`" ]]; then
249 ver=`sed -e 's/^.* \(.*\) (\(.*\)).*$/\1\|\2/' /etc/redhat-release`
250 os_CODENAME=${ver#*|}
251 os_RELEASE=${ver%|*}
252 os_UPDATE=${os_RELEASE##*.}
253 os_RELEASE=${os_RELEASE%.*}
254 break
255 fi
256 os_VENDOR=""
257 done
258 os_PACKAGE="rpm"
Vincent Untz856a11e2012-11-21 16:04:12 +0100259 elif [[ -r /etc/SuSE-release ]]; then
260 for r in openSUSE "SUSE Linux"; do
261 if [[ "$r" = "SUSE Linux" ]]; then
262 os_VENDOR="SUSE LINUX"
263 else
264 os_VENDOR=$r
265 fi
266
267 if [[ -n "`grep \"$r\" /etc/SuSE-release`" ]]; then
268 os_CODENAME=`grep "CODENAME = " /etc/SuSE-release | sed 's:.* = ::g'`
269 os_RELEASE=`grep "VERSION = " /etc/SuSE-release | sed 's:.* = ::g'`
270 os_UPDATE=`grep "PATCHLEVEL = " /etc/SuSE-release | sed 's:.* = ::g'`
271 break
272 fi
273 os_VENDOR=""
274 done
275 os_PACKAGE="rpm"
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500276 fi
277 export os_VENDOR os_RELEASE os_UPDATE os_PACKAGE os_CODENAME
278}
279
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300280# git update using reference as a branch.
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500281# git_update_branch ref
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300282function git_update_branch() {
283
284 GIT_BRANCH=$1
285
286 git checkout -f origin/$GIT_BRANCH
287 # a local branch might not exist
288 git branch -D $GIT_BRANCH || true
289 git checkout -b $GIT_BRANCH
290}
291
292
293# git update using reference as a tag. Be careful editing source at that repo
294# as working copy will be in a detached mode
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500295# git_update_tag ref
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300296function git_update_tag() {
297
298 GIT_TAG=$1
299
300 git tag -d $GIT_TAG
301 # fetching given tag only
302 git fetch origin tag $GIT_TAG
303 git checkout -f $GIT_TAG
304}
305
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500306
Andrew Laskif900bd72012-09-05 17:23:14 -0400307# git update using reference as a branch.
308# git_update_remote_branch ref
309function git_update_remote_branch() {
310
311 GIT_BRANCH=$1
312
313 git checkout -b $GIT_BRANCH -t origin/$GIT_BRANCH
314}
315
316
Dean Troyera9e0a482012-07-09 14:07:23 -0500317# Translate the OS version values into common nomenclature
318# Sets ``DISTRO`` from the ``os_*`` values
319function GetDistro() {
320 GetOSVersion
321 if [[ "$os_VENDOR" =~ (Ubuntu) ]]; then
322 # 'Everyone' refers to Ubuntu releases by the code name adjective
323 DISTRO=$os_CODENAME
324 elif [[ "$os_VENDOR" =~ (Fedora) ]]; then
325 # For Fedora, just use 'f' and the release
326 DISTRO="f$os_RELEASE"
Vincent Untz856a11e2012-11-21 16:04:12 +0100327 elif [[ "$os_VENDOR" =~ (openSUSE) ]]; then
328 DISTRO="opensuse-$os_RELEASE"
329 elif [[ "$os_VENDOR" =~ (SUSE LINUX) ]]; then
330 # For SLE, also use the service pack
331 if [[ -z "$os_UPDATE" ]]; then
332 DISTRO="sle${os_RELEASE}"
333 else
334 DISTRO="sle${os_RELEASE}sp${os_UPDATE}"
335 fi
Dean Troyera9e0a482012-07-09 14:07:23 -0500336 else
337 # Catch-all for now is Vendor + Release + Update
338 DISTRO="$os_VENDOR-$os_RELEASE.$os_UPDATE"
339 fi
340 export DISTRO
341}
342
343
Vincent Untzc18b9652012-12-04 12:36:34 +0100344# Determine if current distribution is an Ubuntu-based distribution.
345# It will also detect non-Ubuntu but Debian-based distros; this is not an issue
346# since Debian and Ubuntu should be compatible.
347# is_ubuntu
348function is_ubuntu {
349 if [[ -z "$os_PACKAGE" ]]; then
350 GetOSVersion
351 fi
352
353 [ "$os_PACKAGE" = "deb" ]
354}
355
356
Vincent Untz856a11e2012-11-21 16:04:12 +0100357# Determine if current distribution is a SUSE-based distribution
358# (openSUSE, SLE).
359# is_suse
360function is_suse {
361 if [[ -z "$os_VENDOR" ]]; then
362 GetOSVersion
363 fi
364
Steve Baker1a7bbd22012-12-03 17:04:02 +1300365 [ "$os_VENDOR" = "openSUSE" ] || [ "$os_VENDOR" = "SUSE LINUX" ]
Vincent Untz856a11e2012-11-21 16:04:12 +0100366}
367
368
Dean Troyer7f9aa712012-01-31 12:11:56 -0600369# git clone only if directory doesn't exist already. Since ``DEST`` might not
370# be owned by the installation user, we create the directory and change the
371# ownership to the proper user.
372# Set global RECLONE=yes to simulate a clone when dest-dir exists
James E. Blair94cb9602012-06-22 15:28:29 -0700373# Set global ERROR_ON_CLONE=True to abort execution with an error if the git repo
374# does not exist (default is False, meaning the repo will be cloned).
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500375# Uses global ``OFFLINE``
Dean Troyer7f9aa712012-01-31 12:11:56 -0600376# git_clone remote dest-dir branch
377function git_clone {
378 [[ "$OFFLINE" = "True" ]] && return
379
380 GIT_REMOTE=$1
381 GIT_DEST=$2
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300382 GIT_REF=$3
Dean Troyer7f9aa712012-01-31 12:11:56 -0600383
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300384 if echo $GIT_REF | egrep -q "^refs"; then
Dean Troyer7f9aa712012-01-31 12:11:56 -0600385 # If our branch name is a gerrit style refs/changes/...
386 if [[ ! -d $GIT_DEST ]]; then
James E. Blair94cb9602012-06-22 15:28:29 -0700387 [[ "$ERROR_ON_CLONE" = "True" ]] && exit 1
Dean Troyer7f9aa712012-01-31 12:11:56 -0600388 git clone $GIT_REMOTE $GIT_DEST
389 fi
390 cd $GIT_DEST
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300391 git fetch $GIT_REMOTE $GIT_REF && git checkout FETCH_HEAD
Dean Troyer7f9aa712012-01-31 12:11:56 -0600392 else
393 # do a full clone only if the directory doesn't exist
394 if [[ ! -d $GIT_DEST ]]; then
James E. Blair94cb9602012-06-22 15:28:29 -0700395 [[ "$ERROR_ON_CLONE" = "True" ]] && exit 1
Dean Troyer7f9aa712012-01-31 12:11:56 -0600396 git clone $GIT_REMOTE $GIT_DEST
397 cd $GIT_DEST
398 # This checkout syntax works for both branches and tags
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300399 git checkout $GIT_REF
Dean Troyer7f9aa712012-01-31 12:11:56 -0600400 elif [[ "$RECLONE" == "yes" ]]; then
401 # if it does exist then simulate what clone does if asked to RECLONE
402 cd $GIT_DEST
403 # set the url to pull from and fetch
404 git remote set-url origin $GIT_REMOTE
405 git fetch origin
406 # remove the existing ignored files (like pyc) as they cause breakage
407 # (due to the py files having older timestamps than our pyc, so python
408 # thinks the pyc files are correct using them)
409 find $GIT_DEST -name '*.pyc' -delete
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300410
411 # handle GIT_REF accordingly to type (tag, branch)
412 if [[ -n "`git show-ref refs/tags/$GIT_REF`" ]]; then
413 git_update_tag $GIT_REF
414 elif [[ -n "`git show-ref refs/heads/$GIT_REF`" ]]; then
415 git_update_branch $GIT_REF
Andrew Laskif900bd72012-09-05 17:23:14 -0400416 elif [[ -n "`git show-ref refs/remotes/origin/$GIT_REF`" ]]; then
417 git_update_remote_branch $GIT_REF
Evgeniy Afonichev6a3912d2012-07-10 14:02:43 +0300418 else
419 echo $GIT_REF is neither branch nor tag
420 exit 1
421 fi
422
Dean Troyer7f9aa712012-01-31 12:11:56 -0600423 fi
424 fi
425}
426
427
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500428# Comment an option in an INI file
Chmouel Boudjnahc7214e82012-06-06 13:56:39 +0200429# inicomment config-file section option
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500430function inicomment() {
431 local file=$1
432 local section=$2
433 local option=$3
Dean Troyerafd472c2012-11-28 11:54:45 -0600434 sed -i -e "/^\[ *$section *\]/,/^\[.*\]/ s|^\($option[ \t]*=.*$\)|#\1|" $file
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500435}
436
Chmouel Boudjnahc7214e82012-06-06 13:56:39 +0200437# Uncomment an option in an INI file
438# iniuncomment config-file section option
439function iniuncomment() {
440 local file=$1
441 local section=$2
442 local option=$3
Dean Troyerafd472c2012-11-28 11:54:45 -0600443 sed -i -e "/^\[ *$section *\]/,/^\[.*\]/ s|[^ \t]*#[ \t]*\($option[ \t]*=.*$\)|\1|" $file
Chmouel Boudjnahc7214e82012-06-06 13:56:39 +0200444}
445
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500446
447# Get an option from an INI file
Dean Troyer09e636e2012-03-19 16:31:12 -0500448# iniget config-file section option
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500449function iniget() {
450 local file=$1
451 local section=$2
452 local option=$3
453 local line
Dean Troyere8335622012-11-27 17:00:11 -0600454 line=$(sed -ne "/^\[ *$section *\]/,/^\[.*\]/ { /^$option[ \t]*=/ p; }" $file)
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500455 echo ${line#*=}
456}
457
458
459# Set an option in an INI file
Dean Troyer09e636e2012-03-19 16:31:12 -0500460# iniset config-file section option value
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500461function iniset() {
462 local file=$1
463 local section=$2
464 local option=$3
465 local value=$4
Dean Troyere8335622012-11-27 17:00:11 -0600466 if ! grep -q "^\[ *$section *\]" $file; then
Dean Troyer09e636e2012-03-19 16:31:12 -0500467 # Add section at the end
468 echo -e "\n[$section]" >>$file
469 fi
470 if [[ -z "$(iniget $file $section $option)" ]]; then
471 # Add it
Dean Troyerafd472c2012-11-28 11:54:45 -0600472 sed -i -e "/^\[ *$section *\]/ a\\
Dean Troyer09e636e2012-03-19 16:31:12 -0500473$option = $value
474" $file
475 else
476 # Replace it
Dean Troyerafd472c2012-11-28 11:54:45 -0600477 sed -i -e "/^\[ *$section *\]/,/^\[.*\]/ s|^\($option[ \t]*=[ \t]*\).*$|\1$value|" $file
Dean Troyer09e636e2012-03-19 16:31:12 -0500478 fi
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500479}
480
481
Chmouel Boudjnah408b0092012-03-15 23:21:55 +0000482# is_service_enabled() checks if the service(s) specified as arguments are
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500483# enabled by the user in ``ENABLED_SERVICES``.
Chmouel Boudjnah408b0092012-03-15 23:21:55 +0000484#
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500485# Multiple services specified as arguments are ``OR``'ed together; the test
486# is a short-circuit boolean, i.e it returns on the first match.
Chmouel Boudjnah408b0092012-03-15 23:21:55 +0000487#
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500488# There are special cases for some 'catch-all' services::
Chmouel Boudjnah408b0092012-03-15 23:21:55 +0000489# **nova** returns true if any service enabled start with **n-**
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500490# **cinder** returns true if any service enabled start with **c-**
491# **ceilometer** returns true if any service enabled start with **ceilometer**
Chmouel Boudjnah408b0092012-03-15 23:21:55 +0000492# **glance** returns true if any service enabled start with **g-**
493# **quantum** returns true if any service enabled start with **q-**
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500494#
495# Uses global ``ENABLED_SERVICES``
496# is_service_enabled service [service ...]
Chmouel Boudjnah408b0092012-03-15 23:21:55 +0000497function is_service_enabled() {
498 services=$@
499 for service in ${services}; do
500 [[ ,${ENABLED_SERVICES}, =~ ,${service}, ]] && return 0
501 [[ ${service} == "nova" && ${ENABLED_SERVICES} =~ "n-" ]] && return 0
Dean Troyer67787e62012-05-02 11:48:15 -0500502 [[ ${service} == "cinder" && ${ENABLED_SERVICES} =~ "c-" ]] && return 0
John H. Tran93361642012-07-26 11:22:05 -0700503 [[ ${service} == "ceilometer" && ${ENABLED_SERVICES} =~ "ceilometer-" ]] && return 0
Chmouel Boudjnah408b0092012-03-15 23:21:55 +0000504 [[ ${service} == "glance" && ${ENABLED_SERVICES} =~ "g-" ]] && return 0
505 [[ ${service} == "quantum" && ${ENABLED_SERVICES} =~ "q-" ]] && return 0
506 done
507 return 1
508}
509
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500510
511# remove extra commas from the input string (i.e. ``ENABLED_SERVICES``)
512# _cleanup_service_list service-list
Doug Hellmannf04178f2012-07-05 17:10:03 -0400513function _cleanup_service_list () {
Dean Troyerca0e3d02012-04-13 15:58:37 -0500514 echo "$1" | sed -e '
Doug Hellmannf04178f2012-07-05 17:10:03 -0400515 s/,,/,/g;
516 s/^,//;
517 s/,$//
518 '
519}
520
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500521
Doug Hellmannf04178f2012-07-05 17:10:03 -0400522# enable_service() adds the services passed as argument to the
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500523# ``ENABLED_SERVICES`` list, if they are not already present.
Doug Hellmannf04178f2012-07-05 17:10:03 -0400524#
525# For example:
Joe Gordon6fd28112012-11-13 16:55:41 -0800526# enable_service qpid
Doug Hellmannf04178f2012-07-05 17:10:03 -0400527#
528# This function does not know about the special cases
529# for nova, glance, and quantum built into is_service_enabled().
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500530# Uses global ``ENABLED_SERVICES``
531# enable_service service [service ...]
Doug Hellmannf04178f2012-07-05 17:10:03 -0400532function enable_service() {
533 local tmpsvcs="${ENABLED_SERVICES}"
534 for service in $@; do
535 if ! is_service_enabled $service; then
536 tmpsvcs+=",$service"
537 fi
538 done
539 ENABLED_SERVICES=$(_cleanup_service_list "$tmpsvcs")
540 disable_negated_services
541}
542
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500543
Doug Hellmannf04178f2012-07-05 17:10:03 -0400544# disable_service() removes the services passed as argument to the
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500545# ``ENABLED_SERVICES`` list, if they are present.
Doug Hellmannf04178f2012-07-05 17:10:03 -0400546#
547# For example:
Joe Gordon6fd28112012-11-13 16:55:41 -0800548# disable_service rabbit
Doug Hellmannf04178f2012-07-05 17:10:03 -0400549#
550# This function does not know about the special cases
551# for nova, glance, and quantum built into is_service_enabled().
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500552# Uses global ``ENABLED_SERVICES``
553# disable_service service [service ...]
Doug Hellmannf04178f2012-07-05 17:10:03 -0400554function disable_service() {
555 local tmpsvcs=",${ENABLED_SERVICES},"
556 local service
557 for service in $@; do
558 if is_service_enabled $service; then
559 tmpsvcs=${tmpsvcs//,$service,/,}
560 fi
561 done
562 ENABLED_SERVICES=$(_cleanup_service_list "$tmpsvcs")
563}
564
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500565
Doug Hellmannf04178f2012-07-05 17:10:03 -0400566# disable_all_services() removes all current services
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500567# from ``ENABLED_SERVICES`` to reset the configuration
Doug Hellmannf04178f2012-07-05 17:10:03 -0400568# before a minimal installation
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500569# Uses global ``ENABLED_SERVICES``
570# disable_all_services
Doug Hellmannf04178f2012-07-05 17:10:03 -0400571function disable_all_services() {
572 ENABLED_SERVICES=""
573}
574
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500575
576# Remove all services starting with '-'. For example, to install all default
Joe Gordon6fd28112012-11-13 16:55:41 -0800577# services except rabbit (rabbit) set in ``localrc``:
578# ENABLED_SERVICES+=",-rabbit"
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500579# Uses global ``ENABLED_SERVICES``
580# disable_negated_services
Doug Hellmannf04178f2012-07-05 17:10:03 -0400581function disable_negated_services() {
582 local tmpsvcs="${ENABLED_SERVICES}"
583 local service
584 for service in ${tmpsvcs//,/ }; do
585 if [[ ${service} == -* ]]; then
586 tmpsvcs=$(echo ${tmpsvcs}|sed -r "s/(,)?(-)?${service#-}(,)?/,/g")
587 fi
588 done
589 ENABLED_SERVICES=$(_cleanup_service_list "$tmpsvcs")
590}
Dean Troyer489bd2a2012-03-02 10:44:29 -0600591
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500592
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500593# Distro-agnostic package installer
594# install_package package [package ...]
595function install_package() {
Vincent Untzc18b9652012-12-04 12:36:34 +0100596 if is_ubuntu; then
Vincent Untzc0482e62012-06-12 11:30:43 +0200597 [[ "$NO_UPDATE_REPOS" = "True" ]] || apt_get update
598 NO_UPDATE_REPOS=True
599
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500600 apt_get install "$@"
601 else
Vincent Untz856a11e2012-11-21 16:04:12 +0100602 if is_suse; then
603 zypper_install "$@"
604 else
605 yum_install "$@"
606 fi
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500607 fi
608}
609
610
Vincent Untz71ebc6f2012-06-12 13:45:15 +0200611# Distro-agnostic function to tell if a package is installed
612# is_package_installed package [package ...]
613function is_package_installed() {
614 if [[ -z "$@" ]]; then
615 return 1
616 fi
617
618 if [[ -z "$os_PACKAGE" ]]; then
619 GetOSVersion
620 fi
Vincent Untzc18b9652012-12-04 12:36:34 +0100621
Vincent Untz71ebc6f2012-06-12 13:45:15 +0200622 if [[ "$os_PACKAGE" = "deb" ]]; then
623 dpkg -l "$@" > /dev/null
624 return $?
625 else
626 rpm --quiet -q "$@"
627 return $?
628 fi
629}
630
631
Dean Troyer489bd2a2012-03-02 10:44:29 -0600632# Test if the named environment variable is set and not zero length
633# is_set env-var
634function is_set() {
635 local var=\$"$1"
Dean Troyere88c0a22012-11-02 16:59:03 -0500636 if eval "[ -z \"$var\" ]"; then
Dean Troyer489bd2a2012-03-02 10:44:29 -0600637 return 1
638 fi
639 return 0
640}
641
642
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500643# Wrapper for ``pip install`` to set cache and proxy environment variables
Maru Newby3a87edd2012-10-25 23:01:06 +0000644# Uses globals ``OFFLINE``, ``PIP_DOWNLOAD_CACHE``, ``PIP_USE_MIRRORS``,
645# ``TRACK_DEPENDS``, ``*_proxy`
Dean Troyer7f9aa712012-01-31 12:11:56 -0600646# pip_install package [package ...]
647function pip_install {
Dean Troyerd0b21e22012-03-07 14:52:25 -0600648 [[ "$OFFLINE" = "True" || -z "$@" ]] && return
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500649 if [[ -z "$os_PACKAGE" ]]; then
650 GetOSVersion
651 fi
Monty Taylor47f02062012-07-26 11:09:24 -0500652 if [[ $TRACK_DEPENDS = True ]] ; then
653 source $DEST/.venv/bin/activate
654 CMD_PIP=$DEST/.venv/bin/pip
655 SUDO_PIP="env"
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500656 else
Monty Taylor47f02062012-07-26 11:09:24 -0500657 SUDO_PIP="sudo"
Vincent Untz8ec27222012-11-29 09:25:31 +0100658 CMD_PIP=$(get_pip_command)
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500659 fi
Maru Newby3a87edd2012-10-25 23:01:06 +0000660 if [[ "$PIP_USE_MIRRORS" != "False" ]]; then
661 PIP_MIRROR_OPT="--use-mirrors"
662 fi
Monty Taylor47f02062012-07-26 11:09:24 -0500663 $SUDO_PIP PIP_DOWNLOAD_CACHE=${PIP_DOWNLOAD_CACHE:-/var/cache/pip} \
Dean Troyer7f9aa712012-01-31 12:11:56 -0600664 HTTP_PROXY=$http_proxy \
665 HTTPS_PROXY=$https_proxy \
Osamu Habuka7abe4f22012-07-25 12:39:32 +0900666 NO_PROXY=$no_proxy \
Maru Newby3a87edd2012-10-25 23:01:06 +0000667 $CMD_PIP install $PIP_MIRROR_OPT $@
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500668}
669
670
671# Service wrapper to restart services
672# restart_service service-name
673function restart_service() {
Vincent Untzc18b9652012-12-04 12:36:34 +0100674 if is_ubuntu; then
Dean Troyer5218d452012-02-04 02:13:23 -0600675 sudo /usr/sbin/service $1 restart
676 else
677 sudo /sbin/service $1 restart
678 fi
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500679}
680
681
Dean Troyer15733352012-09-06 11:51:30 -0500682# Helper to launch a service in a named screen
683# screen_it service "command-line"
684function screen_it {
685 NL=`echo -ne '\015'`
686 SCREEN_NAME=${SCREEN_NAME:-stack}
jiajun xua9414242012-12-06 16:30:57 +0800687 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
688
Dean Troyer15733352012-09-06 11:51:30 -0500689 if is_service_enabled $1; then
690 # Append the service to the screen rc file
691 screen_rc "$1" "$2"
692
693 screen -S $SCREEN_NAME -X screen -t $1
694 # sleep to allow bash to be ready to be send the command - we are
695 # creating a new window in screen and then sends characters, so if
696 # bash isn't running by the time we send the command, nothing happens
697 sleep 1.5
698
699 if [[ -n ${SCREEN_LOGDIR} ]]; then
700 screen -S $SCREEN_NAME -p $1 -X logfile ${SCREEN_LOGDIR}/screen-${1}.${CURRENT_LOG_TIME}.log
701 screen -S $SCREEN_NAME -p $1 -X log on
702 ln -sf ${SCREEN_LOGDIR}/screen-${1}.${CURRENT_LOG_TIME}.log ${SCREEN_LOGDIR}/screen-${1}.log
703 fi
jiajun xua9414242012-12-06 16:30:57 +0800704 screen -S $SCREEN_NAME -p $1 -X stuff "$2 || touch \"$SERVICE_DIR/$SCREEN_NAME/$1.failure\"$NL"
Dean Troyer15733352012-09-06 11:51:30 -0500705 fi
706}
707
708
709# Screen rc file builder
710# screen_rc service "command-line"
711function screen_rc {
712 SCREEN_NAME=${SCREEN_NAME:-stack}
713 SCREENRC=$TOP_DIR/$SCREEN_NAME-screenrc
714 if [[ ! -e $SCREENRC ]]; then
715 # Name the screen session
716 echo "sessionname $SCREEN_NAME" > $SCREENRC
717 # Set a reasonable statusbar
718 echo "hardstatus alwayslastline '$SCREEN_HARDSTATUS'" >> $SCREENRC
719 echo "screen -t shell bash" >> $SCREENRC
720 fi
721 # If this service doesn't already exist in the screenrc file
722 if ! grep $1 $SCREENRC 2>&1 > /dev/null; then
723 NL=`echo -ne '\015'`
724 echo "screen -t $1 bash" >> $SCREENRC
725 echo "stuff \"$2$NL\"" >> $SCREENRC
726 fi
727}
728
jiajun xua9414242012-12-06 16:30:57 +0800729# Helper to remove the *.failure files under $SERVICE_DIR/$SCREEN_NAME
730# This is used for service_check when all the screen_it are called finished
731# init_service_check
732function init_service_check() {
733 SCREEN_NAME=${SCREEN_NAME:-stack}
734 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
735
736 if [[ ! -d "$SERVICE_DIR/$SCREEN_NAME" ]]; then
737 mkdir -p "$SERVICE_DIR/$SCREEN_NAME"
738 fi
739
740 rm -f "$SERVICE_DIR/$SCREEN_NAME"/*.failure
741}
742
743# Helper to get the status of each running service
744# service_check
745function service_check() {
746 local service
747 local failures
748 SCREEN_NAME=${SCREEN_NAME:-stack}
749 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
750
751
752 if [[ ! -d "$SERVICE_DIR/$SCREEN_NAME" ]]; then
753 echo "No service status directory found"
754 return
755 fi
756
757 # Check if there is any falure flag file under $SERVICE_DIR/$SCREEN_NAME
758 failures=`ls "$SERVICE_DIR/$SCREEN_NAME"/*.failure 2>/dev/null`
759
760 for service in $failures; do
761 service=`basename $service`
762 service=${service::-8}
763 echo "Error: Service $service is not running"
764 done
765
766 if [ -n "$failures" ]; then
767 echo "More details about the above errors can be found with screen, with ./rejoin-stack.sh"
768 fi
769}
Dean Troyer15733352012-09-06 11:51:30 -0500770
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500771# ``pip install`` the dependencies of the package before ``setup.py develop``
772# so pip and not distutils processes the dependency chain
773# Uses globals ``TRACK_DEPENDES``, ``*_proxy`
Dean Troyerbbafb1b2012-06-11 16:51:39 -0500774# setup_develop directory
775function setup_develop() {
Monty Taylor47f02062012-07-26 11:09:24 -0500776 if [[ $TRACK_DEPENDS = True ]] ; then
777 SUDO_CMD="env"
778 else
779 SUDO_CMD="sudo"
780 fi
Dean Troyerbbafb1b2012-06-11 16:51:39 -0500781 (cd $1; \
782 python setup.py egg_info; \
783 raw_links=$(awk '/^.+/ {print "-f " $1}' *.egg-info/dependency_links.txt); \
784 depend_links=$(echo $raw_links | xargs); \
Dean Troyer1a3c9fe2012-09-29 17:25:02 -0500785 require_file=$([ ! -r *-info/requires.txt ] || echo "-r *-info/requires.txt"); \
786 pip_install $require_file $depend_links; \
Monty Taylor47f02062012-07-26 11:09:24 -0500787 $SUDO_CMD \
Dean Troyerbbafb1b2012-06-11 16:51:39 -0500788 HTTP_PROXY=$http_proxy \
789 HTTPS_PROXY=$https_proxy \
Osamu Habuka7abe4f22012-07-25 12:39:32 +0900790 NO_PROXY=$no_proxy \
Dean Troyerbbafb1b2012-06-11 16:51:39 -0500791 python setup.py develop \
792 )
793}
794
795
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500796# Service wrapper to start services
797# start_service service-name
798function start_service() {
Vincent Untzc18b9652012-12-04 12:36:34 +0100799 if is_ubuntu; then
Dean Troyer5218d452012-02-04 02:13:23 -0600800 sudo /usr/sbin/service $1 start
801 else
802 sudo /sbin/service $1 start
803 fi
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500804}
805
806
807# Service wrapper to stop services
808# stop_service service-name
809function stop_service() {
Vincent Untzc18b9652012-12-04 12:36:34 +0100810 if is_ubuntu; then
Dean Troyer5218d452012-02-04 02:13:23 -0600811 sudo /usr/sbin/service $1 stop
812 else
813 sudo /sbin/service $1 stop
814 fi
Dean Troyer7f9aa712012-01-31 12:11:56 -0600815}
816
817
818# Normalize config values to True or False
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500819# Accepts as False: 0 no false False FALSE
820# Accepts as True: 1 yes true True TRUE
821# VAR=$(trueorfalse default-value test-value)
Dean Troyer7f9aa712012-01-31 12:11:56 -0600822function trueorfalse() {
823 local default=$1
824 local testval=$2
825
826 [[ -z "$testval" ]] && { echo "$default"; return; }
827 [[ "0 no false False FALSE" =~ "$testval" ]] && { echo "False"; return; }
828 [[ "1 yes true True TRUE" =~ "$testval" ]] && { echo "True"; return; }
829 echo "$default"
830}
Dean Troyer27e32692012-03-16 16:16:56 -0500831
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500832
Dean Troyerca0e3d02012-04-13 15:58:37 -0500833# Retrieve an image from a URL and upload into Glance
834# Uses the following variables:
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500835# ``FILES`` must be set to the cache dir
836# ``GLANCE_HOSTPORT``
Dean Troyerca0e3d02012-04-13 15:58:37 -0500837# upload_image image-url glance-token
838function upload_image() {
839 local image_url=$1
840 local token=$2
841
842 # Create a directory for the downloaded image tarballs.
843 mkdir -p $FILES/images
844
845 # Downloads the image (uec ami+aki style), then extracts it.
846 IMAGE_FNAME=`basename "$image_url"`
847 if [[ ! -f $FILES/$IMAGE_FNAME || "$(stat -c "%s" $FILES/$IMAGE_FNAME)" = "0" ]]; then
848 wget -c $image_url -O $FILES/$IMAGE_FNAME
849 if [[ $? -ne 0 ]]; then
850 echo "Not found: $image_url"
851 return
852 fi
853 fi
854
855 # OpenVZ-format images are provided as .tar.gz, but not decompressed prior to loading
856 if [[ "$image_url" =~ 'openvz' ]]; then
857 IMAGE="$FILES/${IMAGE_FNAME}"
858 IMAGE_NAME="${IMAGE_FNAME%.tar.gz}"
859 glance --os-auth-token $token --os-image-url http://$GLANCE_HOSTPORT image-create --name "$IMAGE_NAME" --is-public=True --container-format ami --disk-format ami < "${IMAGE}"
860 return
861 fi
862
863 KERNEL=""
864 RAMDISK=""
865 DISK_FORMAT=""
866 CONTAINER_FORMAT=""
867 UNPACK=""
868 case "$IMAGE_FNAME" in
869 *.tar.gz|*.tgz)
870 # Extract ami and aki files
871 [ "${IMAGE_FNAME%.tar.gz}" != "$IMAGE_FNAME" ] &&
872 IMAGE_NAME="${IMAGE_FNAME%.tar.gz}" ||
873 IMAGE_NAME="${IMAGE_FNAME%.tgz}"
874 xdir="$FILES/images/$IMAGE_NAME"
875 rm -Rf "$xdir";
876 mkdir "$xdir"
877 tar -zxf $FILES/$IMAGE_FNAME -C "$xdir"
878 KERNEL=$(for f in "$xdir/"*-vmlinuz* "$xdir/"aki-*/image; do
879 [ -f "$f" ] && echo "$f" && break; done; true)
880 RAMDISK=$(for f in "$xdir/"*-initrd* "$xdir/"ari-*/image; do
881 [ -f "$f" ] && echo "$f" && break; done; true)
882 IMAGE=$(for f in "$xdir/"*.img "$xdir/"ami-*/image; do
883 [ -f "$f" ] && echo "$f" && break; done; true)
884 if [[ -z "$IMAGE_NAME" ]]; then
885 IMAGE_NAME=$(basename "$IMAGE" ".img")
886 fi
887 ;;
888 *.img)
889 IMAGE="$FILES/$IMAGE_FNAME";
890 IMAGE_NAME=$(basename "$IMAGE" ".img")
Dean Troyer636a3ff2012-09-14 11:36:07 -0500891 format=$(qemu-img info ${IMAGE} | awk '/^file format/ { print $3; exit }')
892 if [[ ",qcow2,raw,vdi,vmdk,vpc," =~ ",$format," ]]; then
893 DISK_FORMAT=$format
894 else
895 DISK_FORMAT=raw
896 fi
Dean Troyerca0e3d02012-04-13 15:58:37 -0500897 CONTAINER_FORMAT=bare
898 ;;
899 *.img.gz)
900 IMAGE="$FILES/${IMAGE_FNAME}"
901 IMAGE_NAME=$(basename "$IMAGE" ".img.gz")
902 DISK_FORMAT=raw
903 CONTAINER_FORMAT=bare
904 UNPACK=zcat
905 ;;
906 *.qcow2)
907 IMAGE="$FILES/${IMAGE_FNAME}"
908 IMAGE_NAME=$(basename "$IMAGE" ".qcow2")
909 DISK_FORMAT=qcow2
910 CONTAINER_FORMAT=bare
911 ;;
912 *) echo "Do not know what to do with $IMAGE_FNAME"; false;;
913 esac
914
915 if [ "$CONTAINER_FORMAT" = "bare" ]; then
916 if [ "$UNPACK" = "zcat" ]; then
917 glance --os-auth-token $token --os-image-url http://$GLANCE_HOSTPORT image-create --name "$IMAGE_NAME" --public --container-format=$CONTAINER_FORMAT --disk-format $DISK_FORMAT < <(zcat --force "${IMAGE}")
918 else
919 glance --os-auth-token $token --os-image-url http://$GLANCE_HOSTPORT image-create --name "$IMAGE_NAME" --public --container-format=$CONTAINER_FORMAT --disk-format $DISK_FORMAT < "${IMAGE}"
920 fi
921 else
922 # Use glance client to add the kernel the root filesystem.
923 # We parse the results of the first upload to get the glance ID of the
924 # kernel for use when uploading the root filesystem.
925 KERNEL_ID=""; RAMDISK_ID="";
926 if [ -n "$KERNEL" ]; then
927 KERNEL_ID=$(glance --os-auth-token $token --os-image-url http://$GLANCE_HOSTPORT image-create --name "$IMAGE_NAME-kernel" --public --container-format aki --disk-format aki < "$KERNEL" | grep ' id ' | get_field 2)
928 fi
929 if [ -n "$RAMDISK" ]; then
930 RAMDISK_ID=$(glance --os-auth-token $token --os-image-url http://$GLANCE_HOSTPORT image-create --name "$IMAGE_NAME-ramdisk" --public --container-format ari --disk-format ari < "$RAMDISK" | grep ' id ' | get_field 2)
931 fi
932 glance --os-auth-token $token --os-image-url http://$GLANCE_HOSTPORT image-create --name "${IMAGE_NAME%.img}" --public --container-format ami --disk-format ami ${KERNEL_ID:+--property kernel_id=$KERNEL_ID} ${RAMDISK_ID:+--property ramdisk_id=$RAMDISK_ID} < "${IMAGE}"
933 fi
934}
935
Dean Troyerc1b486a2012-11-05 14:26:09 -0600936# Set the database backend to use
937# When called from stackrc/localrc DATABASE_BACKENDS has not been
938# initialized yet, just save the configuration selection and call back later
939# to validate it.
940# $1 The name of the database backend to use (mysql, postgresql, ...)
941function use_database {
942 if [[ -z "$DATABASE_BACKENDS" ]]; then
943 # The backends haven't initialized yet, just save the selection for now
944 DATABASE_TYPE=$1
945 return
946 fi
947 use_exclusive_service DATABASE_BACKENDS DATABASE_TYPE $1 && return 0
948 ret=$?
949 return $ret
950}
951
Terry Wilson428af5a2012-11-01 16:12:39 -0400952# Toggle enable/disable_service for services that must run exclusive of each other
953# $1 The name of a variable containing a space-separated list of services
954# $2 The name of a variable in which to store the enabled service's name
955# $3 The name of the service to enable
956function use_exclusive_service {
957 local options=${!1}
958 local selection=$3
959 out=$2
960 [ -z $selection ] || [[ ! "$options" =~ "$selection" ]] && return 1
961 for opt in $options;do
962 [[ "$opt" = "$selection" ]] && enable_service $opt || disable_service $opt
963 done
964 eval "$out=$selection"
965 return 0
966}
Dean Troyerca0e3d02012-04-13 15:58:37 -0500967
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500968# Wrapper for ``yum`` to set proxy environment variables
969# Uses globals ``OFFLINE``, ``*_proxy`
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500970# yum_install package [package ...]
971function yum_install() {
972 [[ "$OFFLINE" = "True" ]] && return
973 local sudo="sudo"
974 [[ "$(id -u)" = "0" ]] && sudo="env"
975 $sudo http_proxy=$http_proxy https_proxy=$https_proxy \
Osamu Habuka7abe4f22012-07-25 12:39:32 +0900976 no_proxy=$no_proxy \
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500977 yum install -y "$@"
978}
979
Nachi Uenofda946e2012-10-24 17:26:02 -0700980# ping check
981# Uses globals ``ENABLED_SERVICES``
982function ping_check() {
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700983 if is_service_enabled quantum; then
984 _ping_check_quantum "$1" $2 $3 $4
985 return
986 fi
987 _ping_check_novanet "$1" $2 $3 $4
Nachi Uenofda946e2012-10-24 17:26:02 -0700988}
989
990# ping check for nova
991# Uses globals ``MULTI_HOST``, ``PRIVATE_NETWORK``
992function _ping_check_novanet() {
993 local from_net=$1
994 local ip=$2
995 local boot_timeout=$3
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700996 local expected=${4:-"True"}
997 local check_command=""
Nachi Uenofda946e2012-10-24 17:26:02 -0700998 MULTI_HOST=`trueorfalse False $MULTI_HOST`
999 if [[ "$MULTI_HOST" = "True" && "$from_net" = "$PRIVATE_NETWORK_NAME" ]]; then
1000 sleep $boot_timeout
1001 return
1002 fi
Nachi Ueno5db5bfa2012-10-29 11:25:29 -07001003 if [[ "$expected" = "True" ]]; then
1004 check_command="while ! ping -c1 -w1 $ip; do sleep 1; done"
1005 else
1006 check_command="while ping -c1 -w1 $ip; do sleep 1; done"
1007 fi
1008 if ! timeout $boot_timeout sh -c "$check_command"; then
1009 if [[ "$expected" = "True" ]]; then
1010 echo "[Fail] Couldn't ping server"
1011 else
1012 echo "[Fail] Could ping server"
1013 fi
Nachi Uenofda946e2012-10-24 17:26:02 -07001014 exit 1
1015 fi
1016}
1017
1018# ssh check
Nachi Ueno5db5bfa2012-10-29 11:25:29 -07001019
Nachi Uenofda946e2012-10-24 17:26:02 -07001020function ssh_check() {
Nachi Ueno5db5bfa2012-10-29 11:25:29 -07001021 if is_service_enabled quantum; then
1022 _ssh_check_quantum "$1" $2 $3 $4 $5
1023 return
1024 fi
1025 _ssh_check_novanet "$1" $2 $3 $4 $5
1026}
1027
1028function _ssh_check_novanet() {
Nachi Uenofda946e2012-10-24 17:26:02 -07001029 local NET_NAME=$1
1030 local KEY_FILE=$2
1031 local FLOATING_IP=$3
1032 local DEFAULT_INSTANCE_USER=$4
1033 local ACTIVE_TIMEOUT=$5
Dean Troyer6931c132012-11-07 16:51:21 -06001034 local probe_cmd=""
Nachi Uenofda946e2012-10-24 17:26:02 -07001035 if ! timeout $ACTIVE_TIMEOUT sh -c "while ! ssh -o StrictHostKeyChecking=no -i $KEY_FILE ${DEFAULT_INSTANCE_USER}@$FLOATING_IP echo success ; do sleep 1; done"; then
1036 echo "server didn't become ssh-able!"
1037 exit 1
1038 fi
1039}
Dean Troyer13dc5cc2012-03-27 14:50:45 -05001040
Vincent Untz856a11e2012-11-21 16:04:12 +01001041
1042# zypper wrapper to set arguments correctly
1043# zypper_install package [package ...]
1044function zypper_install() {
1045 [[ "$OFFLINE" = "True" ]] && return
1046 local sudo="sudo"
1047 [[ "$(id -u)" = "0" ]] && sudo="env"
1048 $sudo http_proxy=$http_proxy https_proxy=$https_proxy \
1049 zypper --non-interactive install --auto-agree-with-licenses "$@"
1050}
1051
1052
1053# Add a user to a group.
1054# add_user_to_group user group
1055function add_user_to_group() {
1056 local user=$1
1057 local group=$2
1058
1059 if [[ -z "$os_VENDOR" ]]; then
1060 GetOSVersion
1061 fi
1062
1063 # SLE11 and openSUSE 12.2 don't have the usual usermod
1064 if ! is_suse || [[ "$os_VENDOR" = "openSUSE" && "$os_RELEASE" != "12.2" ]]; then
1065 sudo usermod -a -G "$group" "$user"
1066 else
1067 sudo usermod -A "$group" "$user"
1068 fi
1069}
1070
1071
1072# Get the location of the $module-rootwrap executables, where module is cinder
1073# or nova.
1074# get_rootwrap_location module
1075function get_rootwrap_location() {
1076 local module=$1
1077
Vincent Untzc18b9652012-12-04 12:36:34 +01001078 if is_ubuntu || is_suse; then
Vincent Untz856a11e2012-11-21 16:04:12 +01001079 echo "/usr/local/bin/$module-rootwrap"
1080 else
1081 echo "/usr/bin/$module-rootwrap"
1082 fi
1083}
1084
Vincent Untz8ec27222012-11-29 09:25:31 +01001085# Get the path to the pip command.
1086# get_pip_command
1087function get_pip_command() {
Vincent Untzc18b9652012-12-04 12:36:34 +01001088 if is_ubuntu || is_suse; then
Vincent Untz8ec27222012-11-29 09:25:31 +01001089 echo "/usr/bin/pip"
1090 else
1091 echo "/usr/bin/pip-python"
1092 fi
1093}
Vincent Untz856a11e2012-11-21 16:04:12 +01001094
1095# Check if qpid can be used on the current distro.
1096# qpid_is_supported
1097function qpid_is_supported() {
1098 if [[ -z "$DISTRO" ]]; then
1099 GetDistro
1100 fi
1101
1102 # Qpid was introduced to Ubuntu in precise, disallow it on oneiric; it is
1103 # not in openSUSE either right now.
Russell Bryantc2d2f522012-12-03 10:02:40 -05001104 ( ! ([[ "$DISTRO" = "oneiric" ]] || is_suse) )
Vincent Untz856a11e2012-11-21 16:04:12 +01001105 return $?
1106}
1107
Dean Troyer27e32692012-03-16 16:16:56 -05001108# Restore xtrace
Chmouel Boudjnah408b0092012-03-15 23:21:55 +00001109$XTRACE
Dean Troyer4a43b7b2012-08-28 17:43:40 -05001110
1111
1112# Local variables:
1113# -*- mode: Shell-script -*-
Andrew Laskif900bd72012-09-05 17:23:14 -04001114# End: