search for: check0

Displaying 1 result from an estimated 1 matches for "check0".

Did you mean: check
2011 Aug 25
1
[PATCH node 1/3] add reinstall and uninstall options to boot menu
...diff --git a/recipe/common-nochroot.ks b/recipe/common-nochroot.ks index c5d009f..c6dd76d 100644 --- a/recipe/common-nochroot.ks +++ b/recipe/common-nochroot.ks @@ -17,6 +17,9 @@ sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg # Remove Verify and Boot option sed -i -e '/label check0/{N;N;N;d;}' $LIVE_ROOT/isolinux/isolinux.cfg +# Rename Boot option to Install or Upgrade +sed -i 's/^ menu label Boot$/ menu label Install or Upgrade/' $LIVE_ROOT/isolinux/isolinux.cfg + # add serial console boot entry menu=$(mktemp) awk ' @@ -27,9 +30,21 @@ linux0==1 &&am...