9 lines
188 B
Bash
Executable file
9 lines
188 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
url="https://cloud.centos.org/centos/7/atomic/images"
|
|
prefix="CentOS-Atomic-Host-GenericCloud.qcow2"
|
|
|
|
BASE=$(dirname $0)
|
|
$BASE/atomic.bootstrap "$1" "$url" "$prefix"
|