#!/bin/bash export TEXTDOMAIN="zero-lliurex-adobeair" MSG_NO_INTERNET=$(gettext "No Internet Connection has been detected. Please, check it") MSG_BAJAR=$(gettext "Adobe Air will now be downloaded. Aprox. size 10,3MB") MSG_LOCALIZAR=$(gettext "Now you can install your Adobe AIR application. Use Applications-Accesories-Adobe AIR Applications Installer.") #Comprobar conexión a internet e instalar if netcat -z google.com 80 then zenity --info --text="$MSG_BAJAR" su $USERNAME -c "wget -O /tmp/AdobeAIRInstaller.bin http://airdownload.adobe.com/air/lin/download/latest/AdobeAIRInstaller.bin" su $USERNAME -c "chmod +x /tmp/AdobeAIRInstaller.bin" su $USERNAME -c "/tmp/AdobeAIRInstaller.bin" zenity --info --text="$MSG_LOCALIZAR" zero-sqlmanager -s zero-lliurex-adobeair 1 else zenity --error --text="$MSG_NO_INTERNET" fi exit 0