make curl download silently

This commit is contained in:
Kyle Hagerty 2020-03-17 13:56:54 -05:00
parent d1b46f9e07
commit 76b281d4d8

View File

@ -10,8 +10,8 @@ echo -n 'Password: '
read -s dracpwd
echo
echo 'Downloading avctKVM.jar from host'
curl -k -O "https://$drachost/software/avctKVM.jar" > avctKVM.jar
echo 'Downloading avctKVM.jar from host...'
curl -s -k -O "https://$drachost/software/avctKVM.jar" > avctKVM.jar
echo 'Executing JKVM Client...'
./jre/bin/java -cp avctKVM.jar -Djava.library.path=./lib com.avocent.idrac.kvm.Main ip=$drachost kmport=5900 vport=5900 user=$dracuser passwd=$dracpwd apcp=1 version=2 vmprivilege=true "helpurl=https://$drachost:443/help/contents.html"