]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
Revert "rename kernel command line param action_on_fail to rd.action_on_fail"
authordyoung@redhat.com <dyoung@redhat.com>
Mon, 31 Aug 2015 02:43:16 +0000 (10:43 +0800)
committerHarald Hoyer <harald@redhat.com>
Fri, 13 Nov 2015 12:22:34 +0000 (13:22 +0100)
This reverts commit 391d6057908be2fe78f8084eb1b2adc27c781c0b.

action_on_fail is useless thus remove the commits for it one by one.

Signed-off-by: Dave Young <dyoung@redhat.com>
dracut.cmdline.7.asc
modules.d/99base/dracut-lib.sh

index ad99799012c388ce2134d54398c18600281d8a56..cd8cc66ad8dec878a60a8a8a7b439d39034a002f 100644 (file)
@@ -159,7 +159,7 @@ Misc
    specify the controlling terminal for the console.
    This is useful, if you have multiple "console=" arguments.
 
-**rd.action_on_fail=**_{shell|continue}_::
+**action_on_fail=**_{shell|continue}_::
    Specify the action after failure. By default it's emergency_shell.
    'continue' means: ignore the current failure and go ahead.
 
index cc5bb42613abdafa07d7070b1f7d6ed2b40c394d..1ac9b3cefe1022e4b8388a24ff24e9f938df762b 100755 (executable)
@@ -1143,7 +1143,7 @@ emergency_shell()
 
 action_on_fail()
 {
-    local _action=$(getarg rd.action_on_fail= -d action_on_fail=)
+    local _action=$(getarg action_on_fail=)
     case "$_action" in
         continue)
             [ "$1" = "-n" ] && shift 2