diff options
author | Jan Cholasta <jcholast@redhat.com> | 2011-07-18 16:43:35 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-07-19 13:45:01 +0200 |
commit | c1f5dadc4e9c5ed0c9c1a132c4fe5c66b0244882 (patch) | |
tree | 2b996838b6c919b48d4831081597abce31d83315 | |
parent | 1dd9e1407361bdd6ed337c70dcb1d209ce034cb6 (diff) | |
download | freeipa-c1f5dadc4e9c5ed0c9c1a132c4fe5c66b0244882.tar.gz freeipa-c1f5dadc4e9c5ed0c9c1a132c4fe5c66b0244882.tar.xz freeipa-c1f5dadc4e9c5ed0c9c1a132c4fe5c66b0244882.zip |
Don't delete NIS netgroup compat suffix on 'ipa-nis-manage disable'.
ticket 1469
-rwxr-xr-x | install/tools/ipa-nis-manage | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/install/tools/ipa-nis-manage b/install/tools/ipa-nis-manage index 6eb619c3c..3625ae03a 100755 --- a/install/tools/ipa-nis-manage +++ b/install/tools/ipa-nis-manage @@ -185,21 +185,6 @@ def main(): print lde retval = 1 - # delete the netgroups compat area. - try: - conn.delete_entry('cn=ng,cn=Schema Compatibility,cn=plugins,cn=config', normalize=False) - except errors.NotFound: - pass - except errors.DatabaseError, dbe: - print "An error occurred while talking to the server." - print dbe - retval = 1 - except errors.ExecutionError, lde: - print "An error occurred while talking to the server." - print lde - retval = 1 - - else: retval = 1 |