mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
7 lines
162 B
Bash
7 lines
162 B
Bash
#!/bin/bash -e -o pipefail
|
|
|
|
brew install httpd
|
|
sudo sed -Ei '' 's/Listen .*/Listen 80/' $(brew --prefix)/etc/httpd/httpd.conf
|
|
|
|
invoke_tests "WebServers" "Apache"
|