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