- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
kvm_rpm_table="[censored]/function/html/data.htm"
xen_rpm_table="[censored]/function/html/data1.htm"
if [ $1 != "kvm" ] && [ $1 != "xen" ]; then
echo "Please, specify kvm or xen"
exit 1
fi
if [ $1 != "kvm" ]; then
line=`wget $kvm_rpm_table -q -S -O - 2>&1 | grep 'Download' -m1`;
fi
if [ $1 != "xen" ]; then
line=`wget $xen_rpm_table -q -S -O - 2>&1 | grep 'Download' -m1`;
fi