give hints only if the result is left in place

This commit is contained in:
George Danchev 2011-07-24 14:56:36 +00:00
parent aac5928b92
commit 9110f895d2
1 changed files with 7 additions and 5 deletions

View File

@ -245,10 +245,12 @@ if [ -f "${TMP_DATA_DIR}"/"${REMOTE_IMG}" ]; then
fi fi
# last hints # last hints
printf "\n${SELF}: HINT: manual checks remained to be done:\n" if [ -d ${GEN_DATA_DIR} ]; then
printf " * ${GEN_DATA_DIR}/${RELENG_IMG}.iso boots from USB stick and/or optical media.\n" printf "\n${SELF}: HINT: manual checks remained to be done:\n"
printf " * appended FAT partition is mountable.\n" printf " * ${GEN_DATA_DIR}/${RELENG_IMG}.iso boots from USB stick and/or optical media.\n"
printf " * xorriso -indev ${GEN_DATA_DIR}/${RELENG_IMG}.iso -pvd_info\n" printf " * appended FAT partition is mountable.\n"
printf " * fdisk -lu ${GEN_DATA_DIR}/${RELENG_IMG}.iso\n" printf " * xorriso -indev ${GEN_DATA_DIR}/${RELENG_IMG}.iso -pvd_info\n"
printf " * fdisk -lu ${GEN_DATA_DIR}/${RELENG_IMG}.iso\n"
fi
exit 0 exit 0