Browse Source

Stefan Fiedler:


			
			
				rocklinux
			
			
		
Stefan Fiedler 17 years ago
parent
commit
d37baa8da4
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      target/bootdisk/linuxrc.sh

+ 3
- 3
target/bootdisk/linuxrc.sh

@ -384,11 +384,11 @@ checkisomd5() { # {{{
getcdromdevice 1 0 0 || return getcdromdevice 1 0 0 || return
echo "Running check..." echo "Running check..."
/bin/checkisomd5 ${devicefile}
/bin/checkisomd5 --verbose ${devicefile}
code=${?} code=${?}
if [ ${code} -eq 1 ] ; then
if [ ${code} -eq 0 ] ; then
echo "MD5Sum is correct." echo "MD5Sum is correct."
elif [ ${code} -eq 0 ] ; then
elif [ ${code} -eq 1 ] ; then
echo "MD5Sum is NOT correct! Please contact the authors!" echo "MD5Sum is NOT correct! Please contact the authors!"
fi fi

Loading…
Cancel
Save