Current File : //proc/self/root/usr/local/jetapps/usr/share/rear/verify/DP/default/450_request_gui_restore.sh |
# 450_request_gui_restore.sh
# Press [gG] to fall back to GUI restore
#set -e
# ensure the flag DP GUI restore request does not exists
rm -f $TMP_DIR/DP_GUI_RESTORE
if [ $ARCH == "Linux-i386" ] || [ $ARCH == "Linux-ia64" ]; then
unset REPLY
# Use the original STDIN STDOUT and STDERR when rear was launched by the user
# to get input from the user and to show output to the user (cf. _input-output-functions.sh):
read -t $WAIT_SECS -r -n 1 -p "press 'G' to fall back to Data Protector GUI-based restore [$WAIT_SECS secs]: " 0<&6 1>&7 2>&8
if test "$REPLY" = "g" -o "$REPLY" = "G" ; then
Log "Data Protector GUI restore requested"
> $TMP_DIR/DP_GUI_RESTORE
fi
else
LogPrint "Data Protector User Interface (CC component) not supported on $ARCH."
LogPrint "Additional checks skipped. Restore can be done using Data Protector GUI only."
> $TMP_DIR/DP_GUI_RESTORE
fi