diff --git a/scripts/install-rhel.sh b/scripts/install-rhel.sh index 9ca66e9..47014c4 100644 --- a/scripts/install-rhel.sh +++ b/scripts/install-rhel.sh @@ -23,6 +23,13 @@ if [ -f '/etc/init.d/vlmcsd' ]; then exit 1 fi +if [ ! -f '/bin/tar' ]; then + echo 'Installing tar ...' + yum -q -y install tar + check_result $? "Can't install tar." + echo 'Install tar succeed.' +fi + if [ ! -f '/usr/bin/wget' ]; then echo 'Installing wget ...' yum -q -y install wget