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

15 lines
412 B
Bash
Raw Normal View History

2014-02-22 17:48:02 +01:00
#!/bin/bash
apt-get update
2014-09-04 17:19:43 +02:00
if dpkg -l | grep flashplugin-nonfree | grep ii
2014-02-22 17:48:02 +01:00
then
echo "Flash ist bereits installiert"
zenity --info --title "Info" --text "Flash ist bereits installiert"
exit
fi
if apt-get install flashplugin-nonfree -y
then
zenity --info --title "Erfolg" --text "Flash wurde erfolgreich installiert"
else
zenity --error --title "Fehler" --text "Flash wurde nicht erfolgreich installiert"
fi