Backport/2.6/54105 pamd: fix idempotence issue when removing rules
This commit is contained in:
parent
8b05790a45
commit
0d3b577774
3 changed files with 5 additions and 1 deletions
2
changelogs/fragments/pamd-make-idempotence-fix.yaml
Normal file
2
changelogs/fragments/pamd-make-idempotence-fix.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- Backport of https://github.com/ansible/ansible/pull/54105, pamd - fix idempotence issue when removing rules
|
|
@ -480,7 +480,7 @@ class PamdService(object):
|
|||
else:
|
||||
self._head = current_line.next
|
||||
current_line.next.prev = None
|
||||
changed += 1
|
||||
changed += 1
|
||||
|
||||
current_line = current_line.next
|
||||
return changed
|
||||
|
|
|
@ -349,5 +349,7 @@ session required pam_unix.so"""
|
|||
|
||||
def test_remove_rule(self):
|
||||
self.assertTrue(self.pamd.remove('account', 'required', 'pam_unix.so'))
|
||||
# Second run should not change anything
|
||||
self.assertFalse(self.pamd.remove('account', 'required', 'pam_unix.so'))
|
||||
test_rule = PamdRule('account', 'required', 'pam_unix.so')
|
||||
self.assertNotIn(str(test_rule), str(self.pamd))
|
||||
|
|
Loading…
Reference in a new issue