Update mariadb_setup.sh

This commit is contained in:
tteckster 2022-02-16 18:03:36 -05:00 committed by GitHub
parent 2d001c10fa
commit 860c0bc2ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -61,10 +61,6 @@ echo -e "${CHECKMARK} \e[1;92m Installing Adminer... \e[0m"
sudo apt install adminer -y &>/dev/null sudo apt install adminer -y &>/dev/null
sudo a2enconf adminer &>/dev/null sudo a2enconf adminer &>/dev/null
sudo systemctl reload apache2 &>/dev/null sudo systemctl reload apache2 &>/dev/null
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 Customizing Container... \e[0m" echo -e "${CHECKMARK} \e[1;92m Customizing Container... \e[0m"
rm /etc/motd rm /etc/motd
@ -79,6 +75,11 @@ ExecStart=-/sbin/agetty --autologin root --noclear --keep-baud tty%I 115200,3840
EOF EOF
systemctl daemon-reload systemctl daemon-reload
systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//') systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
service apache2 stop
mkdir /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" echo -e "${CHECKMARK} \e[1;92m Cleanup... \e[0m"
rm -rf /mariadb_setup.sh /var/{cache,log}/* /var/lib/apt/lists/* rm -rf /mariadb_setup.sh /var/{cache,log}/* /var/lib/apt/lists/*