From 94f362d7b0b6c838752eb2f6674149e96d3ae95b Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mar 13 2017 09:12:40 +0000 Subject: server install: remove duplicate knob definitions Remove duplicate definitions of knobs already defined in client install. https://pagure.io/freeipa/issue/6392 Reviewed-By: Stanislav Laznicka --- diff --git a/ipaserver/install/server/__init__.py b/ipaserver/install/server/__init__.py index 4a0289b..edb91f3 100644 --- a/ipaserver/install/server/__init__.py +++ b/ipaserver/install/server/__init__.py @@ -221,30 +221,6 @@ class ServerInstallInterface(client.ClientInstallInterface, ) no_ui_redirect = enroll_only(no_ui_redirect) - ssh_trust_dns = knob( - None, - description="configure OpenSSH client to trust DNS SSHFP records", - ) - ssh_trust_dns = enroll_only(ssh_trust_dns) - - no_ssh = knob( - None, - description="do not configure OpenSSH client", - ) - no_ssh = enroll_only(no_ssh) - - no_sshd = knob( - None, - description="do not configure OpenSSH server", - ) - no_sshd = enroll_only(no_sshd) - - no_dns_sshfp = knob( - None, - description="Do not automatically create DNS SSHFP records", - ) - no_dns_sshfp = enroll_only(no_dns_sshfp) - dirsrv_config_file = knob( str, None, description="The path to LDIF file that will be used to modify "