Robert Kaussow
363ee36566
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Robert Kaussow <xoxys@rknet.org> Co-committed-by: Robert Kaussow <xoxys@rknet.org>
17 lines
372 B
Python
17 lines
372 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_sshd_config_file(host):
|
|
sshd = host.file("/etc/ssh/sshd_config")
|
|
|
|
assert sshd.exists
|
|
assert sshd.user == "root"
|
|
assert sshd.group == "root"
|
|
assert sshd.mode == 0o600
|