apache misc

This commit is contained in:
2024-07-31 23:15:48 +08:00
parent 5bf67b1c8e
commit f3f6e8fd31

15
install/apache2 Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
##makedesc: Install apache2 (latest)
source `dirname $0`/../helpers || exit 255
title
sudo apt install -y --autoremove apache2 && \
sudo systemctl restart apache2
[ $? = 0 ] && {
echo
success "apache2 installed!"
apache2 -v
echo
}