This commit is contained in:
stornic56
2026-04-29 17:41:37 -05:00
committed by GitHub
parent 347c36ceb7
commit f4f8dc7883
7 changed files with 826 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# ------------------------------------------------------------------------------
# Common printing functions for all installer scripts.
# ------------------------------------------------------------------------------
print_step() { echo -e "\n\033[1;34m>>>\033[0m \033[1m$1\033[0m"; }
print_substep() { echo -e "\033[1;32m =>\033[0m $1"; }
print_warning() { echo -e "\033[1;33m [AVISO]\033[0m $1"; }
print_error() { echo -e "\033[1;31m [ERROR]\033[0m $1"; }