fixed a formatting bug

master
Thomas Brinkmann 4 years ago
parent a00abc2732
commit 370b8fd853
  1. 4
      README.md
  2. 6
      lamp-headless.sh

@ -4,7 +4,7 @@ Installs LAMP without any user input is required
## Requirements ## Requirements
Currently only Debian 9 is supported Currently only Debian 9/Debian 10 is supported
@ -12,7 +12,7 @@ Currently only Debian 9 is supported
```bash ```bash
Not available yet bash <(wget -qO- http://main.mirror.deinserverhost.icu:3000/Conan_Doyl/LAMP-Headless/raw/branch/master/lamp-headless.sh)
``` ```
## Contributing ## Contributing

@ -3,7 +3,7 @@
DBPASS=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) DBPASS=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
DBUSER=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10 | head -n 1) DBUSER=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10 | head -n 1)
ADMINPASS=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) ADMINPASS=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
PHPMYADMINV = "5.0.2" PHPMYADMINV=5.0.2
VAR_A=`uname -m` VAR_A=`uname -m`
mkdir /home/tmp mkdir /home/tmp
@ -24,7 +24,7 @@ show_spinner()
clean_up(){ clean_up(){
echo "Clean"
} }
install_Debian9(){ install_Debian9(){
@ -76,7 +76,7 @@ install_Debian9(){
mysql -u root < /home/LAMP.sql mysql -u root < /home/LAMP.sql
rm /home/LAMP.sql rm /home/LAMP.sql
service apache2 restart service apache2 restart
OWNIP = curl ifconfig.me OWNIP=curl ifconfig.me
echo -e "\n\e[92mWriting login details into file...\e[39m" echo -e "\n\e[92mWriting login details into file...\e[39m"

Loading…
Cancel
Save