1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00

Downloadfehler ausgebessert

This commit is contained in:
Findus23 2014-12-01 18:20:46 +01:00
parent bab5459a91
commit f4e26cfd7c
6 changed files with 13 additions and 12 deletions

View file

@ -4,9 +4,10 @@ TEXTDOMAINDIR=./
name="Adobe-Reader"
./installed.sh adobereader-deu $name && exit
wget -O /tmp/adobe-reader.deb ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.1/deu/AdbeRdr9.1.0-1_i386linux_deu.deb
if sudo dpkg -i /tmp/adobe-reader.deb -y
wget -c -O /tmp/adobe-reader.deb ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.1/deu/AdbeRdr9.1.0-1_i386linux_deu.deb
if sudo dpkg -i -y /tmp/adobe-reader.deb
then
zenity --info --title $"Success" --text $"$name successfully installed"
else

View file

@ -5,9 +5,9 @@ name="Anki"
./installed.sh anki $name && exit
wget -O /tmp/anki.deb http://ankisrs.net/download/mirror/anki-2.0.31.deb
wget -c -O /tmp/anki.deb http://ankisrs.net/download/mirror/anki-2.0.31.deb
sudo apt-get install mplayer -y
if sudo dpkg -i /tmp/anki.deb -y
if sudo dpkg -i -y /tmp/anki.deb
then
zenity --info --title $"Success" --text $"$name successfully installed"
else

View file

@ -5,9 +5,9 @@ name="Dropbox"
./installed.sh dropbox $name && exit
wget -O /tmp/dropbox.deb https://www.dropbox.com/download?dl=packages/debian/dropbox_1.6.2_i386.deb
wget -O -c /tmp/dropbox.deb https://www.dropbox.com/download?dl=packages/debian/dropbox_1.6.2_i386.deb
if sudo dpkg -i /tmp/dropbox.deb -y
if sudo dpkg -i -y /tmp/dropbox.deb
then
zenity --info --title $"Success" --text $"$name successfully installed"
else

View file

@ -4,9 +4,9 @@ TEXTDOMAINDIR=./
name="Google Chrome"
./installed.sh google-chrome $name && exit
wget -O /tmp/chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
wget -c -O /tmp/chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
if sudo dpkg -i /tmp/chrome.deb -y
if sudo dpkg -i -y /tmp/chrome.deb
then
zenity --info --title $"Success" --text $"$name successfully installed"
else

View file

@ -4,9 +4,9 @@ TEXTDOMAINDIR=./
name="Opera"
./installed.sh opera $name && exit
wget -O /tmp/opera.deb http://get.geo.opera.com/pub/opera/linux/1216/opera_12.16.1860_i386.deb
wget -O -c /tmp/opera.deb http://get.geo.opera.com/pub/opera/linux/1216/opera_12.16.1860_i386.deb
if sudo dpkg -i /tmp/opera.deb -y
if sudo dpkg -i -y /tmp/opera.deb
then
zenity --info --title $"Success" --text $"$name successfully installed"
else

View file

@ -4,9 +4,9 @@ TEXTDOMAINDIR=./
name="Skype"
./installed.sh skype $name && exit
wget -O /tmp/skype.deb http://download.skype.com/linux/skype-debian_4.2.0.13-1_i386.deb
wget -c -O /tmp/skype.deb http://download.skype.com/linux/skype-debian_4.2.0.13-1_i386.deb
if sudo dpkg -i /tmp/skype.deb -y
if sudo dpkg -i -y /tmp/skype.deb
then
zenity --info --title $"Success" --text $"$name successfully installed"
else