Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adtrust-install: Mention AD GC port 3286 in list of required ports #6

Closed

Conversation

pspacek
Copy link
Contributor

@pspacek pspacek commented Aug 22, 2016

Port name "msft-gc" is taken form /etc/services file provided by package
setup-2.10.1-1.fc24.noarch.

https://fedorahosted.org/freeipa/ticket/6235

Port name "msft-gc" is taken form /etc/services file provided by package
setup-2.10.1-1.fc24.noarch.

https://fedorahosted.org/freeipa/ticket/6235
@abbra
Copy link
Contributor

abbra commented Aug 22, 2016

Sounds good to me. Thanks.

@abbra abbra added the ack Pull Request approved, can be merged label Aug 22, 2016
@MartinBasti MartinBasti added the pushed Pull Request has already been pushed label Aug 22, 2016
@MartinBasti
Copy link
Contributor

ssidhaye added a commit to ssidhaye/freeipa that referenced this pull request Jul 18, 2019
is successful after adding ldap_deref_threshold=0 in sssd.conf

Problem: After adding ldap_deref_threshold=0 setting for sssd for
performance enhancement ssh fro ipa client was failing

Test Procedure:
1. setup a master and a client
2. add ldap_deref_threshold=0 to sssd.conf
3. add an ipa user
4. ssh from client to master using the user created in step 3

related ticket: https://pagure.io/SSSD/sssd/issue/3979

Removed test_client.py since this test can has added to test_commands.py.
SSH after adding performance parameter is tested from controller
machine instead of a client machine.

Patch freeipa#2
Fixed missing import

Patch freeipa#3
Added test cleanup post test

Patch freeipa#4
Used modify_sssd_conf instead of parsing lines

Patch freeipa#5
Added pytest.xfail based on the sssd package version

Patch freeipa#6
Replaced `rpm -qa sssd` call to `sssd --version`
Added kinit <username> call

Signed-off-by: Sumedh Sidhaye <ssidhaye@redhat.com>
ssidhaye added a commit to ssidhaye/freeipa that referenced this pull request Jul 18, 2019
is successful after adding ldap_deref_threshold=0 in sssd.conf

Problem: After adding ldap_deref_threshold=0 setting for sssd for
performance enhancement ssh fro ipa client was failing

Test Procedure:
1. setup a master and a client
2. add ldap_deref_threshold=0 to sssd.conf
3. add an ipa user
4. ssh from client to master using the user created in step 3

related ticket: https://pagure.io/SSSD/sssd/issue/3979

Removed test_client.py since this test can has added to test_commands.py.
SSH after adding performance parameter is tested from controller
machine instead of a client machine.

Patch freeipa#2
Fixed missing import

Patch freeipa#3
Added test cleanup post test

Patch freeipa#4
Used modify_sssd_conf instead of parsing lines

Patch freeipa#5
Added pytest.xfail based on the sssd package version

Patch freeipa#6
Replaced `rpm -qa sssd` call to `sssd --version`
Added kinit <username> call

Signed-off-by: Sumedh Sidhaye <ssidhaye@redhat.com>
ssidhaye added a commit to ssidhaye/freeipa that referenced this pull request Jul 24, 2019
is successful after adding ldap_deref_threshold=0 in sssd.conf

Problem: After adding ldap_deref_threshold=0 setting for sssd on master for
performance enhancement ssh from ipa client was failing

Test Procedure:
1. setup a master
2. add ldap_deref_threshold=0 to sssd.conf on master
3. add an ipa user
4. ssh from client to master using the user created in step 3

related ticket: https://pagure.io/SSSD/sssd/issue/3979

Removed test_client.py since this test can has added to test_commands.py.
SSH after adding performance parameter is tested from controller
machine instead of a client machine.

Patch freeipa#2
Fixed missing import

Patch freeipa#3
Added test cleanup post test

Patch freeipa#4
Used modify_sssd_conf instead of parsing lines

Patch freeipa#5
Added pytest.xfail based on the sssd package version

Patch freeipa#6
Replaced `rpm -qa sssd` call to `sssd --version`
Added kinit <username> call

Signed-off-by: Sumedh Sidhaye <ssidhaye@redhat.com>
ssidhaye added a commit to ssidhaye/freeipa that referenced this pull request Jul 24, 2019
is successful after adding ldap_deref_threshold=0 in sssd.conf

Problem: After adding ldap_deref_threshold=0 setting for sssd on master for
performance enhancement ssh from ipa client was failing

Test Procedure:
1. setup a master
2. add ldap_deref_threshold=0 to sssd.conf on master
3. add an ipa user
4. ssh from controller to master using the user created in step 3

related ticket: https://pagure.io/SSSD/sssd/issue/3979

Removed test_client.py since this test can has added to test_commands.py.
SSH after adding performance parameter is tested from controller
machine instead of a client machine.

Patch freeipa#2
Fixed missing import

Patch freeipa#3
Added test cleanup post test

Patch freeipa#4
Used modify_sssd_conf instead of parsing lines

Patch freeipa#5
Added pytest.xfail based on the sssd package version

Patch freeipa#6
Replaced `rpm -qa sssd` call to `sssd --version`
Added kinit <username> call

Signed-off-by: Sumedh Sidhaye <ssidhaye@redhat.com>
ssidhaye added a commit to ssidhaye/freeipa that referenced this pull request Jul 24, 2019
Problem:
If a replica installation fails before all the services have been enabled then
it could leave things in a bad state.

ipa-replica-manage del <replica> --cleanup --force
invalid 'PKINIT enabled server': all masters must have IPA master role enabled

Test Steps:
1. Setup server
2. Setup replica
3. modify the replica entry on Master:
   ldapmodify -D cn="Directory Manager"-w <passwd>
   dn: cn=KDC,cn=<replicaFQDN>,cn=masters,cn=ipa,cn=etc,<baseDN>
   changetype: modify
   replace: ipaconfigstring
   ipaconfigstring: pkinitEnabled
   ipaconfigstring: configuredService
4. On master,
   run ipa-replica-manage del <replicaFQDN> --cleanup --force

Related Ticket: https://pagure.io/freeipa/issue/7929

Patch freeipa#2
fixed linting errors

Patch freeipa#3
Fixed review comments

Patch freeipa#4
Removed hard coded realm
Other minor changes
Fixed import error

Patch freeipa#5
added test to nightly yamls

Patch freeipa#6
removed test added to fedora 28 nightly as it is not needed

Signed-off-by: Sumedh Sidhaye <ssidhaye@redhat.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ack Pull Request approved, can be merged pushed Pull Request has already been pushed
Projects
None yet
3 participants