7593a8b925
Adds the kayobe-seed-upgrade-centos job, which performs an upgrade of the seed services from the previous release to the current release. Change-Id: Ia3eb39cf81cb3618fd94c4456bd576b52098c946 Story: 2004308 Task: 27873
20 lines
312 B
Bash
Executable File
20 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# Simple script to upgrade a development environment for a seed VM using
|
|
# kayobe. This should be executed from the hypervisor.
|
|
|
|
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source "${PARENT}/functions"
|
|
|
|
|
|
function main {
|
|
config_init
|
|
seed_upgrade
|
|
}
|
|
|
|
main
|