1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
#!/bin/bash
# Author: Steven Shiau <steven _at_ clonezilla org>
# License: GPL
# Description: switch the PXE menu in the config file
# Load DRBL setting and functions
DRBL_SCRIPT_PATH="${DRBL_SCRIPT_PATH:-/usr/share/drbl}"
. $DRBL_SCRIPT_PATH/sbin/drbl-conf-functions
#
# DIA (="dialog") is loaded from drbl.conf
PXE_CONF_DEF="$PXELINUX_DIR/default"
# functions
clean_tmp() {
[ -f "$TMP" ] && rm -f $TMP
[ -f "$PXE_CONF_TMP" ] && rm -f $PXE_CONF_TMP
}
#
USAGE() {
echo "Usage:"
echo "To hide, reveal or set default PXE client menu:"
echo "`basename $0` [OPTION] [hide|reveal|setdefault]"
echo "Options:"
language_help_prompt_by_idx_no
echo "-i, --menu MENU Assign MENU to be processed"
echo "-c, --config CONF use the CONF file instead of default one ($PXE_CONF_DEF)"
dialog_like_prog_help_prompt
echo "-o, --output-result-file FILE Output the selecting results to the FILE. It includes the results of action and image_selected."
echo "-v, --verbose show verbose messages"
echo "-h, --help display this help and exit"
echo
echo "EXAMPLE"
echo " To hide the menu 'local' and 'memtest', you can run:"
echo " $0 -i 'local memtest' hide"
}
select_image() {
all_label="$(awk '/^[[:space:]]*label[[:space:]]+.*([[:space:]]|$)+/ {print $2}' $PXE_CONF_TMP)"
[ -n "$VERBOSE" ] && echo "all_label: $all_label"
if [ -z "$all_label" ]; then
$DIA --title "No PXE image found!" --clear \
--msgbox "I can NOT find any PXE image in $PXE_CONF! \nMake sure you already setup DRBL server properly!" 0 0
exit 0
fi
MENU=""
for i in $all_label; do
# EX for i: rh-8.0-netinstall
# get the description for the netinstall image from pxelinux default
lines="$(get_pxecfg_image_block $i $PXE_CONF_TMP)"
begin_line="$(echo $lines | awk -F" " '{print $1}')"
end_line="$(echo $lines | awk -F" " '{print $2}')"
search_cmd="if ($begin_line..$end_line) {print}"
des="$(LC_ALL=C perl -n -e "$search_cmd" $PXE_CONF_TMP | grep -i "^[[:space:]]*MENU LABEL" | sed -e "s/^[[:space:]]*MENU LABEL //gi" -e "s/ /_/g")"
case "$action" in
"hide"|"setdefault")
grep_cmd="^[[:space:]]*MENU HIDE"
;;
"reveal")
grep_cmd="^[[:space:]]*[#]+[[:space:]]+MENU HIDE"
;;
esac
add_menu="$(LC_ALL=C perl -n -e "$search_cmd" $PXE_CONF_TMP | grep -Ei "$grep_cmd")"
if [ -z "$add_menu" ]; then
MENU="$MENU $i $des off "
fi
done
# check if we can find any target menu
if [ -z "$MENU" ]; then
[ "$BOOTUP" = "color" ] && $SETCOLOR_FAILURE
echo "Error!!! No any unhidden menu was found!"
echo "Maybe they are all unhidden!"
[ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
clean_tmp
echo "$msg_program_stop"
exit 1
fi
#
eval title="\$msg_title_${action}"
eval list_des="\$msg_${action}_list_des"
case "$action" in
"hide"|"reveal")
$DIA \
--backtitle "$msg_nchc_title" \
--title "$title" \
--separate-output \
--checklist "$list_des ($msg_press_space_to_mark_selection)" 0 80 0 \
$MENU 2> $TMP
image_selected="$(cat $TMP)"
;;
"setdefault")
# Here we use --radiolist so that the format of MENU is compatible with --checklist
$DIA \
--backtitle "$msg_nchc_title" \
--title "$title" \
--radiolist "$list_des" 0 80 0 \
$MENU 2> $TMP
image_selected="$(cat $TMP)"
;;
esac
[ -f "$TMP" ] && rm -f $TMP
[ -z "$image_selected" ] && exit 1
[ -n "$VERBOSE" ] && echo "image_selected: $image_selected"
} # end of select_image
select_hide_reveal_setdefault() {
TMP=$(mktemp /tmp/menu.XXXXXX)
$DIA \
--backtitle "$msg_nchc_title" \
--title "$msg_hide_reveal" \
--menu "$msg_choose_the_action:" 0 60 0 \
"hide" "$msg_hide_pxe_menus" \
"reveal" "$msg_reveal_pxe_menus" \
"setdefault" "$msg_setdefault_pxe_menu" \
2> $TMP
action=$(cat $TMP)
[ -f "$TMP" ] && rm -f $TMP
[ -z "$action" ] && echo "No action selected! Program terminated!!!" && exit 1
} # end of select_hide_reveal_setdefault
image_selected=""
# Parse command-line options
while [ $# -gt 0 ]; do
case "$1" in
-l|--language)
shift
if [ -z "$(echo $1 |grep ^-.)" ]; then
# skip the -xx option, in case
specified_lang="$1"
shift
fi
;;
-i|--image)
shift
# skip the -xx option, in case
if [ -z "$(echo $1 |grep ^-.)" ]; then
image_selected="$image_selected $1"
shift
fi
;;
-c|--config)
shift
# skip the -xx option, in case
if [ -z "$(echo $1 |grep ^-.)" ]; then
PXE_CONF="$1"
shift
fi
;;
-o|--output-result-file)
shift
# skip the -xx option, in case
if [ -z "$(echo $1 |grep ^-.)" ]; then
RESULT_FILE="$1"
shift
fi
;;
-h|--help)
USAGE >& 2
exit 2 ;;
-d0|--dialog) DIA="dialog"; shift;;
-d1|--Xdialog) DIA="Xdialog"; shift;;
-d2|--whiptail) DIA="whiptail"; shift;;
-d3|--gdialog) DIA="gdialog"; shift;;
-d4|--kdialog) DIA="kdialog"; shift;;
-v|--verbose) VERBOSE="on"; shift;;
-*) echo "${0}: ${1}: invalid option" >&2
USAGE >& 2
exit 2 ;;
*) break ;;
esac
done
#
ask_and_load_lang_set $specified_lang
# check DIA
check_DIA_set_ESC $DIA
#
action="$1"
[ -z "$action" ] && select_hide_reveal_setdefault
[ -z "$PXE_CONF" ] && PXE_CONF=$PXE_CONF_DEF
#
TMP=$(mktemp /tmp/menu.XXXXXX)
PXE_CONF_TMP="$(mktemp /tmp/pxecfg.XXXXXX)"
# copy the original pxe_conf to be a template
if [ ! -f "$PXE_CONF" ]; then
[ "$BOOTUP" = "color" ] && $SETCOLOR_FAILURE
echo -e "Unable to find any PXE config file! \nMake sure you already setup DRBL server properly!"
[ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
clean_tmp
exit 1
fi
cp -f $PXE_CONF $PXE_CONF_TMP
[ -z "$image_selected" ] && select_image
# Make $image_selected in one line
image_selected="$(echo $image_selected)"
# hide or reveal the specified menu
case "$action" in
"hide")
for img in $image_selected; do
echo "Hide the label \"$img\"."
hide_reveal_pxe_img $img hide $PXE_CONF_TMP
done
;;
"reveal")
for img in $image_selected; do
echo "Reveal the label \"$img\"."
hide_reveal_pxe_img $img reveal $PXE_CONF_TMP
done
;;
"setdefault")
echo "Set the default label \"$image_selected\"."
set-default-pxe-img -i $image_selected -c $PXE_CONF_TMP
;;
esac
# check if all menu is hidden!!! We can not do that!
if ! grep -qiE "[[:space:]]*[#]+[[:space:]]*MENU[[:space:]]HIDE" $PXE_CONF_TMP; then
[ "$BOOTUP" = "color" ] && $SETCOLOR_FAILURE
echo "$msg_error!!! $msg_you_can_not_hide_all_pxe_menus!!!"
echo "$msg_program_stop!!! $msg_no_modification!"
[ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
clean_tmp
exit 1
fi
#
[ -n "$VERBOSE" ] && echo "Copy the template file $PXE_CONF_TMP to actual one $PXE_CONF"
cp -f $PXE_CONF_TMP $PXE_CONF
cp_rc="$?"
[ -f "$PXE_CONF_TMP" ] && rm -f $PXE_CONF_TMP
# Write settings for later use
if [ "$cp_rc" -eq 0 -a -n "$RESULT_FILE" ]; then
echo "Output action and selected menus to $RESULT_FILE."
cat <<-RESULT_END > $RESULT_FILE
action="$action"
image_selected="$image_selected"
RESULT_END
fi
exit 0
|