mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
15 lines
461 B
Bash
15 lines
461 B
Bash
#!/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"
|