Made releng/auto_isocontent ready for Solaris (with bash)

This commit is contained in:
Thomas Schmitt 2011-08-09 11:42:23 +00:00
parent e2aa3c0509
commit 9950e3e55d
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ is_valid_iso9660() {
failure=1
printf "\nFAIL : ${SELF} : Not found: ${ISOfile}\n"
fi
if file ${ISOfile} | grep -P "ISO\s+9660\s+CD-ROM\s+filesystem\s+data" >/dev/null 2>&1; then
file ${ISOfile}
if file ${ISOfile} | grep "ISO *9660" >/dev/null 2>&1; then
printf "\n${SELF}: Resulting ${ISOfile} OK. Looks like ISO 9660 filesystem.\n"
else
failure=1