Robert Kaussow
66f9312cb8
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
468 B
Python
17 lines
468 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_pam_config(host):
|
|
auth = host.file("/etc/pam.d/system-auth")
|
|
|
|
assert auth.contains("auth sufficient pam_unix.so nullok try_first_pass")
|
|
assert auth.contains(
|
|
"password sufficient pam_unix.so sha512 shadow nullok try_first_pass use_authtok"
|
|
)
|