Robert Kaussow
91f2362f48
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
314 B
Python
14 lines
314 B
Python
import os
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
).get_hosts("all")
|
|
|
|
|
|
def test_auditd_running_and_enabled(host):
|
|
auditd = host.service("auditd")
|
|
assert auditd.is_running
|
|
assert auditd.is_enabled
|