xoxys.pam/molecule/centos7/tests/test_default.py

17 lines
468 B
Python
Raw Normal View History

2019-11-06 20:26:03 +01:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 22:28:25 +02:00
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
2019-11-06 20:26:03 +01:00
def test_pam_config(host):
auth = host.file("/etc/pam.d/system-auth")
assert auth.contains("auth sufficient pam_unix.so nullok try_first_pass")
2019-11-06 20:26:03 +01:00
assert auth.contains(
"password sufficient pam_unix.so sha512 shadow nullok try_first_pass use_authtok"
)