2021-01-29 07:52:46 -08:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
################################################################################
|
2023-11-22 21:49:23 +01:00
|
|
|
## File: install-apache.sh
|
|
|
|
|
## Desc: Install Apache HTTP Server
|
2021-01-29 07:52:46 -08:00
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
# Install Apache
|
2024-05-29 13:43:07 +02:00
|
|
|
apt-get install apache2
|
2021-01-29 07:52:46 -08:00
|
|
|
|
|
|
|
|
# Disable apache2.service
|
|
|
|
|
systemctl is-active --quiet apache2.service && systemctl stop apache2.service
|
|
|
|
|
systemctl disable apache2.service
|
|
|
|
|
|
|
|
|
|
invoke_tests "WebServers" "Apache"
|