c2e03d3eb7
Related: #1963135
19 lines
470 B
YAML
19 lines
470 B
YAML
- hosts: localhost
|
|
remote_user: root
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-basic
|
|
tests:
|
|
- verify_httpd_up:
|
|
dir: .
|
|
run: "curl http://localhost/ &> testfile.log || true && grep '<strong>Test Page</strong>' testfile.log"
|
|
- check_error_log:
|
|
dir: .
|
|
run: "! sudo grep -i error /var/log/httpd/error_log | grep -v \"AH01276\""
|
|
required_packages:
|
|
- mod_jk-ap24
|
|
- httpd
|
|
required_services:
|
|
- httpd
|