mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Ignore empty modification error in case cifs/.. principal already added
Constrained delegation target may already be configured by default. Related: https://pagure.io/freeipa/issue/9354 Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
parent
4119e4e799
commit
68c113f02b
@ -563,6 +563,8 @@ class ADTRUSTInstance(service.Service):
|
|||||||
self.print_msg('cifs principal already targeted, nothing to do.')
|
self.print_msg('cifs principal already targeted, nothing to do.')
|
||||||
except errors.NotFound:
|
except errors.NotFound:
|
||||||
self.print_msg(UPGRADE_ERROR % dict(dn=targets_dn))
|
self.print_msg(UPGRADE_ERROR % dict(dn=targets_dn))
|
||||||
|
except errors.EmptyModlist:
|
||||||
|
pass
|
||||||
|
|
||||||
def __write_smb_registry(self):
|
def __write_smb_registry(self):
|
||||||
"""Import IPA specific config into Samba registry
|
"""Import IPA specific config into Samba registry
|
||||||
|
Loading…
Reference in New Issue
Block a user