Files

15 lines
461 B
Bash
Raw Permalink Normal View History

#!/bin/bash -e
################################################################################
## File: install-apache.sh
## Desc: Install Apache HTTP Server
################################################################################
# Install Apache
apt-get install apache2
# Disable apache2.service
systemctl is-active --quiet apache2.service && systemctl stop apache2.service
systemctl disable apache2.service
invoke_tests "WebServers" "Apache"