You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
583 B

#!/usr/bin/env bash
testDownloadExtras() {
local ret=0
[ ! -e $VDN_PATH/files/$HOST_RELEASE/vte.so ] && ret=1
return $ret
}
downloadExtras() {
mkdir -p $VDN_PATH/files/$HOST_RELEASE
[ ! -e $VDN_PATH/files/$HOST_RELEASE/vte.so ] && {
request "Le binaire vte.so (GTK terminal emulator for Ruby) nécessite d'être téléchargé (environ 200 Ko). Télécharger vte.so ?"
if [ $? -eq 0 ]; then
wget -O $VDN_PATH/files/$HOST_RELEASE/vte.so http://opale.u-clermont1.fr/vdn/files/$HOST_RELEASE/vte.so
[ $? -ne 0 ] && rm -f $VDN_PATH/files/$HOST_RELEASE/vte.so
fi
}
}