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

XAMPP hinzugefügt

This commit is contained in:
Findus23 2014-12-20 12:19:05 +01:00
parent 71d1f6416e
commit f9ebb3078e

15
xampp.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/bash
TEXTDOMAIN=la-tools
TEXTDOMAINDIR=./
name="Xampp"
./installed.sh opera $name && exit
cd /tmp
URL="http://downloads.sourceforge.net/project/xampp/XAMPP%20Linux/5.6.3/xampp-linux-x64-5.6.3-0-installer.run"
wget -c $URL
if sudo ./$(basename $URL) --mode unattended --disable-components xampp_developer_files --installer-language de --launchapps 0 --unattendedmodeui minimalWithDialogs
then
zenity --info --title $"Success" --text $"$name successfully installed"
rm ./$(basename $URL)
else
zenity --error --title $"Error" --text $"An error occurred while installing $name"
fi