mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-24 07:03:43 +00:00
installs mysql components
These are needed for the stats database and scripts.
This commit is contained in:
parent
739027a27d
commit
ec9999fa6b
1 changed files with 22 additions and 15 deletions
|
@ -300,8 +300,15 @@ $SUDO echo "::: ...done."
|
|||
$SUDO echo "::: Installing dnsmasq..."
|
||||
$SUDO apt-get -yqq install dnsmasq & spinner $!
|
||||
$SUDO echo "::: ...done."
|
||||
$SUDO echo "::: Installing lighttpd, php5-common, php5-cgi, and php5..."
|
||||
$SUDO apt-get -yqq install lighttpd php5-common php5-cgi php5 & spinner $!
|
||||
$SUDO echo "::: Installing lighttpd, php5-common, php5-cgi, php5, and php5-mysql..."
|
||||
$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 "::: Installing git..."
|
||||
$SUDO apt-get -yqq install git & spinner $!
|
||||
|
|
Loading…
Reference in a new issue