image_builder: split image_config.sh & standardization headers

This commit is contained in:
Artem Smirnov
2018-09-21 19:19:48 +03:00
parent d7e6629567
commit c828effd23
14 changed files with 247 additions and 156 deletions

View File

@@ -0,0 +1,26 @@
#! /usr/bin/env bash
#
# Script for image configure
# @urpylka Artem Smirnov
#
echo_stamp() {
# TEMPLATE: echo_stamp <TEXT> <TYPE>
# TYPE: SUCCESS, ERROR, INFO
# More info there https://www.shellhacks.com/ru/bash-colors/
TEXT="$(date) | $1"
TEXT="\e[1m$TEXT\e[0m" # BOLD
case "$2" in
SUCCESS)
TEXT="\e[32m${TEXT}\e[0m";; # GREEN
ERROR)
TEXT="\e[31m${TEXT}\e[0m";; # RED
*)
TEXT="\e[34m${TEXT}\e[0m";; # BLUE
esac
echo -e ${TEXT}
}