
These are a few minimal changes to make the CentOS basedisk build. Change-Id: I186c74c26312d5cd567c95ff8a9e7341cf01b3a4
14 lines
273 B
Bash
Executable File
14 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit -o nounset
|
|
TOP_DIR=$(cd "$(dirname "$0")/.." && pwd)
|
|
source "$TOP_DIR/config/paths"
|
|
source "$CONFIG_DIR/openstack"
|
|
source "$LIB_DIR/functions.guest.sh"
|
|
|
|
indicate_current_auto
|
|
|
|
exec_logfile
|
|
|
|
# Upgrade installed packages
|
|
sudo yum -y update
|