#!/bin/bash # # This script can be used to pull all of the docker images for the # containers that compose Kolla. This is primarily used to update # containers after a rebuild. Run with the option docker or compose # to select the pull tool. if [[ $EUID -ne 0 ]]; then echo "You must execute this script as root." 1>&2 exit 1 fi usage () { cat <