From efa57193630f244185b3f295ed0de17c6d08f75a Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Mon, 8 Jul 2024 10:49:49 -0400 Subject: [PATCH] ipa-migrate - remove -V option The versioning in ipa-migrate was removed, but the "-V" option to display the version was not removed. Fixes: https://pagure.io/freeipa/issue/9620 Signed-off-by: Mark Reynolds Reviewed-By: Rob Crittenden --- install/tools/man/ipa-migrate.1 | 3 --- ipaserver/install/ipa_migrate.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/install/tools/man/ipa-migrate.1 b/install/tools/man/ipa-migrate.1 index 78881d1f8..2d9d2c650 100644 --- a/install/tools/man/ipa-migrate.1 +++ b/install/tools/man/ipa-migrate.1 @@ -67,9 +67,6 @@ Reset the ID range for migrated users/groups. In "stage-mode" this is done autom \fB\-F\fR, \fB\-\-force\fR Ignore any errors and continue to proceed with migration effort. .TP -\fB\-V\fR, \fB\-\-version\fR -Display the version of the migration tool. -.TP \fB\-q\fR, \fB\-\-quiet\fR Only log errors during the migration process. .TP diff --git a/ipaserver/install/ipa_migrate.py b/ipaserver/install/ipa_migrate.py index 58351af60..6be8d9ba2 100644 --- a/ipaserver/install/ipa_migrate.py +++ b/ipaserver/install/ipa_migrate.py @@ -389,9 +389,6 @@ class IPAMigrate(): parser.add_argument('-F', '--force', help='Ignore errors and continue with migration', action='store_true', default=False) - parser.add_argument('-V', '--version', - help='Display verison of the migration tool', - action='store_true', default=False) parser.add_argument('-q', '--quiet', help='Only display errors during the migration', action='store_true', default=False)