Skip to content

Commit

Permalink
tests: Do not use PAM in test server
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Jelen <[email protected]>
  • Loading branch information
Jakuje committed Dec 20, 2024
1 parent fda0b49 commit 9a0c0d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def sshd_addr(free_port_num, ssh_authorized_keys_path, sshd_hostkey_path, sshd_p
opt, 'PidFile={pid!s}'.format(pid=sshd_path / 'sshd.pid'),

# NOTE: 'UsePAM no' is not supported on Fedora.
# Ref: https://bugzilla.redhat.com/show_bug.cgi?id=770756#c1
opt, 'UsePAM=yes',
# But it is ok for testing as it simplifies everything
opt, 'UsePAM=no',
opt, 'PasswordAuthentication=no',
opt, 'ChallengeResponseAuthentication=no',
opt, 'GSSAPIAuthentication=no',
Expand Down

0 comments on commit 9a0c0d4

Please sign in to comment.