mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-05 10:50:33 +00:00
The former VM deployment process relied on extra scripts located in a (private) repo. The new process is standalone.
16 lines
205 B
Bash
16 lines
205 B
Bash
bold() {
|
|
msg=$1
|
|
echo "$(tput bold)$1$(tput sgr0)"
|
|
}
|
|
|
|
green() {
|
|
msg=$1
|
|
echo "$(tput setaf 2)$1$(tput sgr0)"
|
|
}
|
|
|
|
yellow(){
|
|
msg=$1
|
|
echo "$(tput setaf 3)$1$(tput sgr0)"
|
|
}
|
|
|