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