You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
360 B
21 lines
360 B
12 years ago
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
|
||
|
# Capture Errors
|
||
|
OwnError()
|
||
|
{
|
||
|
#echo $@ >&2
|
||
|
clear
|
||
|
echo -e "[ $0 ][ `date` ] \033[31m $@ \e[0m" | tee -ai /var/log/easyengine/error.log
|
||
|
exit 100
|
||
|
}
|
||
|
|
||
|
|
||
|
# Update The APT Cache
|
||
|
sudo apt-get update || OwnError "Unable To Update APT Cache :("
|
||
|
|
||
|
# Install MySQL
|
||
|
sudo apt-get -y install mysql-server mysqltuner || OwnError "Unable To Install MySQL :("
|
||
|
|