Browse Source

added bash version checkk to System-Check

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1245 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
904ced08b3
2 changed files with 12 additions and 0 deletions
  1. +4
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +8
    -0
      scripts/Check-System

+ 4
- 0
Documentation/Developers/CHANGELOG-RENE

@ -1,4 +1,8 @@
*) 2003-08-30 (2.0.0-rc1 - 2.0.0-rc2)
- added bash version checkk to System-Check
*) 2003-08-29 (2.0.0-rc1 - 2.0.0-rc2)
- Juergen Sawinski: cleanup jsaw

+ 8
- 0
scripts/Check-System

@ -59,6 +59,14 @@ if [ -z "`type -p bzip2`" ] ; then
found_error=1
fi
case $BASH_VERSION in
2.05b*) ;;
*) echo "The running bash version is not listed as supported version"
echo "You nee to update 'bash' to at least version 2.05b."
found_error=1
esac
x="`mktemp -p /tmp 2> /dev/null`"
if [ -z "$x" -o ! -f "$x" ] ; then
echo

Loading…
Cancel
Save