Merge "Don't start all services during upgrade steps"
[apex-tripleo-heat-templates.git] / extraconfig / tasks / major_upgrade_object_storage.sh
1 #!/bin/bash
2 #
3 # This delivers the swift-storage upgrade script to be invoked as part of the tripleo
4 # major upgrade workflow.
5 #
6 set -eu
7
8 UPGRADE_SCRIPT=/root/tripleo_upgrade_node.sh
9
10 cat > $UPGRADE_SCRIPT << ENDOFCAT
11 ### DO NOT MODIFY THIS FILE
12 ### This file is automatically delivered to the swift-storage nodes as part of the
13 ### tripleo upgrades workflow
14
15 set -eu
16
17 function systemctl_swift {
18     action=\$1
19     for S in openstack-swift-account-auditor openstack-swift-account-reaper openstack-swift-account-replicator openstack-swift-account \
20              openstack-swift-container-auditor openstack-swift-container-replicator openstack-swift-container-updater openstack-swift-container \
21              openstack-swift-object-auditor openstack-swift-object-replicator openstack-swift-object-updater openstack-swift-object; do
22                 systemctl \$action \$S
23     done
24 }
25
26 $(declare -f special_case_ovs_upgrade_if_needed)
27 special_case_ovs_upgrade_if_needed
28
29 systemctl_swift stop
30
31 yum -y install python-zaqarclient  # needed for os-collect-config
32 yum -y update
33
34 systemctl_swift start
35
36
37
38 ENDOFCAT
39
40 # ensure the permissions are OK
41 chmod 0755 $UPGRADE_SCRIPT
42