blob: 64c4457e2ba5033117b0d97d9510a5625ce91eaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
#
# This runs an upgrade of Cinder Block Storage nodes.
#
set -eu
# Special-case OVS for https://bugs.launchpad.net/tripleo/+bug/1635205
special_case_ovs_upgrade_if_needed
yum -y install python-zaqarclient # needed for os-collect-config
yum -y -q update
|