mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-07-29 15:55:47 -05:00
check nsds5ReplicaReleaseTimeout option was set
Check for nsds5ReplicaReleaseTimeout option was set relates to: https://pagure.io/freeipa/issue/7488 Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
committed by
Christian Heimes
parent
9ead70844e
commit
84ae625fe2
@@ -136,6 +136,20 @@ class TestExternalCA(IntegrationTest):
|
|||||||
# check that we can also install replica
|
# check that we can also install replica
|
||||||
tasks.install_replica(self.master, self.replicas[0])
|
tasks.install_replica(self.master, self.replicas[0])
|
||||||
|
|
||||||
|
# check that nsds5ReplicaReleaseTimeout option was set
|
||||||
|
result = self.master.run_command([
|
||||||
|
'ldapsearch',
|
||||||
|
'-x',
|
||||||
|
'-D',
|
||||||
|
'cn=directory manager',
|
||||||
|
'-w', self.master.config.dirman_password,
|
||||||
|
'-b', 'cn=mapping tree,cn=config',
|
||||||
|
'(cn=replica)',
|
||||||
|
'-LLL',
|
||||||
|
'-o',
|
||||||
|
'ldif-wrap=no'])
|
||||||
|
assert 'nsds5ReplicaReleaseTimeout: 60' in result.stdout_text
|
||||||
|
|
||||||
def test_client_installation_with_otp(self):
|
def test_client_installation_with_otp(self):
|
||||||
# Test for issue 7526: client installation fails with one-time
|
# Test for issue 7526: client installation fails with one-time
|
||||||
# password when the master is installed with an externally signed
|
# password when the master is installed with an externally signed
|
||||||
|
|||||||
Reference in New Issue
Block a user