installs mysql components

These are needed for the stats database and scripts.
This commit is contained in:
jacobsalmela 2016-01-20 19:46:44 -06:00
parent 739027a27d
commit ec9999fa6b

View file

@ -300,8 +300,15 @@ $SUDO echo "::: ...done."
$SUDO echo "::: Installing dnsmasq..." $SUDO echo "::: Installing dnsmasq..."
$SUDO apt-get -yqq install dnsmasq & spinner $! $SUDO apt-get -yqq install dnsmasq & spinner $!
$SUDO echo "::: ...done." $SUDO echo "::: ...done."
$SUDO echo "::: Installing lighttpd, php5-common, php5-cgi, and php5..." $SUDO echo "::: Installing lighttpd, php5-common, php5-cgi, php5, and php5-mysql..."
$SUDO apt-get -yqq install lighttpd php5-common php5-cgi php5 & spinner $! $SUDO apt-get -yqq install lighttpd php5-common php5-cgi php5 php5-mysql & spinner $!
$SUDO echo "::: ...done."
$SUDO echo "::: Installing mysql-server..."
# Lets mysql-server be isntalled without prompting for a password creation
# Must be run before mysql-server is installed
echo mysql-server mysql-server/root_password password raspberry | sudo debconf-set-selections
echo mysql-server mysql-server/root_password_again password raspberry | sudo debconf-set-selections
$SUDO apt-get -yqq mysql-server & spinner $!
$SUDO echo "::: ...done." $SUDO echo "::: ...done."
$SUDO echo "::: Installing git..." $SUDO echo "::: Installing git..."
$SUDO apt-get -yqq install git & spinner $! $SUDO apt-get -yqq install git & spinner $!