From 41faecce468a243f1b0835cacdb373c8b4515204 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Thu, 3 Jan 2008 19:54:17 -0600 Subject: Allow init=??? syntax again Using an explicit set of params passed to kinit is annoying, because we forget things like this. Add init=??? syntax again, for i.e. init=/bin/bash to recover a root password Signed-off-by: Aaron Griffin --- init | 2 ++ 1 file changed, 2 insertions(+) (limited to 'init') diff --git a/init b/init index 3511286..b8ee065 100644 --- a/init +++ b/init @@ -21,6 +21,8 @@ for cmd in $CMDLINE; do \#*) break ;; # ignore everything after a # in the commandline [0123456Ss]) export runlevel="$cmd" ;; single) export runlevel="S" ;; #some people use 'single' + #Allow "init=X" to pass-through + init=*) kinit_params="${kinit_params} ${cmd}" ;; # replace can cause problems for the following entries # These should only be applied to the lefthand side of the expression # until we find a fix hardcode the stuff here. -- cgit v1.2.3-24-g4f1b