51b5b9
From 525f2307fa3e2d0ae55c8c922e6f7220a1e5bd1b Mon Sep 17 00:00:00 2001
51b5b9
From: Mark Reynolds <mreynolds@redhat.com>
51b5b9
Date: Thu, 3 Feb 2022 16:51:38 -0500
51b5b9
Subject: [PATCH] Issue 4775 - Fix cherry-pick error
51b5b9
51b5b9
Bug Description: EntryUUID when added was missing it's CLI
51b5b9
and helpers for fixups.
51b5b9
51b5b9
Fix Description: Add the CLI elements.
51b5b9
51b5b9
fixes: https://github.com/389ds/389-ds-base/issues/4775
51b5b9
51b5b9
Author: William Brown <william@blackhats.net.au>
51b5b9
51b5b9
Review by: @mreynolds389 (thanks!)
51b5b9
---
51b5b9
 src/lib389/lib389/cli_conf/plugin.py | 2 --
51b5b9
 1 file changed, 2 deletions(-)
51b5b9
51b5b9
diff --git a/src/lib389/lib389/cli_conf/plugin.py b/src/lib389/lib389/cli_conf/plugin.py
51b5b9
index 7c0cf2c80..fb0ef3077 100644
51b5b9
--- a/src/lib389/lib389/cli_conf/plugin.py
51b5b9
+++ b/src/lib389/lib389/cli_conf/plugin.py
51b5b9
@@ -27,7 +27,6 @@ from lib389.cli_conf.plugins import passthroughauth as cli_passthroughauth
51b5b9
 from lib389.cli_conf.plugins import retrochangelog as cli_retrochangelog
51b5b9
 from lib389.cli_conf.plugins import automember as cli_automember
51b5b9
 from lib389.cli_conf.plugins import posix_winsync as cli_posix_winsync
51b5b9
-from lib389.cli_conf.plugins import contentsync as cli_contentsync
51b5b9
 from lib389.cli_conf.plugins import entryuuid as cli_entryuuid
51b5b9
 
51b5b9
 SINGULAR = Plugin
51b5b9
@@ -115,7 +114,6 @@ def create_parser(subparsers):
51b5b9
     cli_passthroughauth.create_parser(subcommands)
51b5b9
     cli_retrochangelog.create_parser(subcommands)
51b5b9
     cli_posix_winsync.create_parser(subcommands)
51b5b9
-    cli_contentsync.create_parser(subcommands)
51b5b9
     cli_entryuuid.create_parser(subcommands)
51b5b9
 
51b5b9
     list_parser = subcommands.add_parser('list', help="List current configured (enabled and disabled) plugins")
51b5b9
-- 
51b5b9
2.34.1
51b5b9