mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-01 22:46:36 +00:00
9 lines
328 B
Bash
9 lines
328 B
Bash
infra_start() {
|
|
COUNT=$1
|
|
info "You should now run your provisioning commands for $COUNT machines."
|
|
info "Note: no machines have been automatically created!"
|
|
info "Once done, put the list of IP addresses in tags/$TAG/ips.txt"
|
|
info "(one IP address per line, without any comments or extra lines)."
|
|
touch tags/$TAG/ips.txt
|
|
}
|