fix download method

This commit is contained in:
Kyle Hagerty 2020-03-16 17:20:34 -05:00
parent 1b4c15afd3
commit 6e0e6425b6
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ read -s dracpwd
echo
echo 'Downloading avctKVM.jar from host'
curl --no-check-certificate "https://$drachost/software/avctKVM.jar" > avctKVM.jar
curl -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"

View File

@ -11,7 +11,7 @@ read -s dracpwd
echo
echo 'Downloading avctKVM.jar from host'
curl --no-check-certificate "https://$drachost/software/avctKVM.jar" > avctKVM.jar
curl -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"