diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-16 04:45:35 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-16 04:45:35 +0300 |
commit | 5deb47cfbb7bcd994bb7295637dc5e85187ce1cb (patch) | |
tree | 48c543ea4c484b2652be638e9fa4ebe10daa7d42 | |
parent | c14e862fca1c53620fd28465c6292bdcaadf22ab (diff) | |
download | init-5deb47cfbb7bcd994bb7295637dc5e85187ce1cb.tar.gz |
rc.lib: simplify
-rw-r--r-- | rc.lib | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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 } - -} |