From 86a0e98f0708d06138c134653b2016741e357d46 Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 16 Feb 2022 18:22:59 -0500 Subject: [PATCH] Update mariadb_setup.sh --- setup/mariadb_setup.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/setup/mariadb_setup.sh b/setup/mariadb_setup.sh index 211aa86a..71b45c60 100644 --- a/setup/mariadb_setup.sh +++ b/setup/mariadb_setup.sh @@ -58,6 +58,9 @@ apt-get update >/dev/null apt-get install -y mariadb-server &>/dev/null echo -e "${CHECKMARK} \e[1;92m Installing Adminer... \e[0m" +mkdir /var/log/apache2 +chmod 750 /var/log/apache2 +chown root:adm /var/log/apache2 sudo apt install adminer -y &>/dev/null sudo a2enconf adminer &>/dev/null sudo systemctl reload apache2 &>/dev/null @@ -75,11 +78,6 @@ ExecStart=-/sbin/agetty --autologin root --noclear --keep-baud tty%I 115200,3840 EOF systemctl daemon-reload systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//') -service apache2 stop -mkdir -p /var/log/apache2 -chmod 750 /var/log/apache2 -chown root:adm /var/log/apache2 -service apache2 start echo -e "${CHECKMARK} \e[1;92m Cleanup... \e[0m" rm -rf /mariadb_setup.sh /var/{cache,log}/* /var/lib/apt/lists/*