From 5deb47cfbb7bcd994bb7295637dc5e85187ce1cb Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sat, 16 May 2020 04:45:35 +0300 Subject: rc.lib: simplify --- rc.lib | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/rc.lib b/rc.lib index c95d55a..919883e 100644 --- a/rc.lib +++ b/rc.lib @@ -1,15 +1,10 @@ # rc.lib -- common functions for rc.boot and rc.shutdown -# shellcheck disable=1090 -# Functions for rc.boot and rc.shutdown - -out() { printf '\033[1;36m-> \033[m\033[1m%s\033[m\n' "$@" ;} -error() { printf '\033[1;31m!> ERROR: \033[m\033[1m%s\033[m\n' "$@" >&2 ;} +out() { printf '\033[1;36m-> \033[39m%s\033[m\n' "$@" ;} +err() { printf '\033[1;31m!> \033[39m%s\033[m\n' "$@" ;} shell() { error "Dropping to shell, type 'exit' to continue the boot process." sh -l } - -} -- cgit v1.2.3