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

23 lines
709 B
Bash
Raw Normal View History

2014-09-02 16:25:26 +02:00
#!/bin/bash
2014-09-04 17:19:43 +02:00
if dpkg -l | grep dropbox | grep ii
2014-09-02 16:25:26 +02:00
then
2014-09-04 17:19:43 +02:00
echo "Dropbox ist bereits installiert"
zenity --info --title "Info" --text "Dropbox ist bereits installiert"
2014-09-02 16:25:26 +02:00
exit
fi
sources=$(cat /etc/apt/sources.list.d/dropbox.list)
if [ "$sources" != "deb http://linux.dropbox.com/debian wheezy main" ]
then
echo "deb http://linux.dropbox.com/debian wheezy main" > temp
mv temp /etc/apt/sources.list.d/geogebra.list
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
rm temp
fi
apt-get update
if apt-get install dropbox -y
then
zenity --info --title "Erfolg" --text "Dropbox wurde erfolgreich installiert"
else
zenity --error --title "Fehler" --text "Dropbox wurde nicht erfolgreich installiert"
fi