aboutsummaryrefslogtreecommitdiff
path: root/rc.lib
diff options
context:
space:
mode:
Diffstat (limited to 'rc.lib')
-rw-r--r--rc.lib8
1 files changed, 3 insertions, 5 deletions
diff --git a/rc.lib b/rc.lib
index 1843304..c95d55a 100644
--- a/rc.lib
+++ b/rc.lib
@@ -7,11 +7,9 @@
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 ;}
-emergency_shell() {
- error "Cannot continue init due to errors above, starting emergency shell" \
- "When ready, type 'exit' to continue the boot."
-
- /bin/sh -l
+shell() {
+ error "Dropping to shell, type 'exit' to continue the boot process."
+ sh -l
}
}