From d75a3f3b52fc76bfba7db7b83711f73288ca3cf8 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Jul 24 2020 19:08:47 +0000 Subject: remove remaining options --- diff --git a/docs/source/migrations/migrating_to_1.11.rst b/docs/source/migrations/migrating_to_1.11.rst index c008ba0..ee56b8d 100644 --- a/docs/source/migrations/migrating_to_1.11.rst +++ b/docs/source/migrations/migrating_to_1.11.rst @@ -74,7 +74,6 @@ The command line and several other tools support the following new configuration * ``use_old_ssl`` : Use the old ssl code instead of python-requests * ``no_ssl_verify`` : Disable certificate verification for https connections * ``upload_blocksize`` : Override the blocksize for uploads - * ``krb_rdns`` : Use the fqdn of the server when authenticating via kerberos The ``ca`` option is deprecated and no longer required for ssl authentication (``serverca`` is still required). diff --git a/util/koji-shadow b/util/koji-shadow index 656c7eb..2cbef13 100755 --- a/util/koji-shadow +++ b/util/koji-shadow @@ -81,12 +81,6 @@ def get_options(): help=_("run as the specified user (requires special privileges)")) parser.add_option("--user", help=_("specify user")) parser.add_option("--password", help=_("specify password")) - parser.add_option("--krb-rdns", action="store_true", default=False, - help=_("get reverse dns FQDN for krb target")) - parser.add_option("--krb-canon-host", action="store_true", default=False, - help=_("get canonical hostname for krb target")) - parser.add_option("--krb-server-realm", - help=_("the realm of server Kerberos principal")) parser.add_option("--noauth", action="store_true", default=False, help=_("do not authenticate")) parser.add_option("-n", "--test", action="store_true", default=False, diff --git a/util/koji-sidetag-cleanup b/util/koji-sidetag-cleanup index b066d12..e99e533 100644 --- a/util/koji-sidetag-cleanup +++ b/util/koji-sidetag-cleanup @@ -33,10 +33,6 @@ def get_options(): parser.add_option("-s", "--server", help=_("url of koji XMLRPC server")) parser.add_option("--keytab", help=_("specify a Kerberos keytab to use")) parser.add_option("--principal", help=_("specify a Kerberos principal to use")) - parser.add_option("--krb-rdns", action="store_true", default=False, - help=_("get reverse dns FQDN for krb target")) - parser.add_option("--krb-canon-host", action="store_true", default=False, - help=_("get canonical hostname for krb target")) parser.add_option("--runas", metavar="USER", help=_("run as the specified user (requires special privileges)")) parser.add_option("--user", help=_("specify user"))