summaryrefslogtreecommitdiff
path: root/ambari-common
diff options
context:
space:
mode:
authorEugene Chekanskiy <echekanskiy@hortonworks.com>2017-04-21 17:52:18 +0300
committerEugene Chekanskiy <echekanskiy@hortonworks.com>2017-04-21 17:52:18 +0300
commit712b3d21c12aec99899cffd54a694b4bcb64dd93 (patch)
treee61f8ef783cca2f7c4f3f0a7387465aa92dc8ed5 /ambari-common
parent951bf19869eece2f798b4465e0b120f6db9a523f (diff)
AMBARI-20733. /var/log/krb5kdc.log is growing rapidly on the KDC server (echekanskiy)
Diffstat (limited to 'ambari-common')
-rw-r--r--ambari-common/src/main/python/resource_management/libraries/script/script.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/ambari-common/src/main/python/resource_management/libraries/script/script.py b/ambari-common/src/main/python/resource_management/libraries/script/script.py
index a7450e0379..e3292366d9 100644
--- a/ambari-common/src/main/python/resource_management/libraries/script/script.py
+++ b/ambari-common/src/main/python/resource_management/libraries/script/script.py
@@ -843,22 +843,6 @@ class Script(object):
"""
self.fail_with_error('configure method isn\'t implemented')
- def security_status(self, env):
- """
- To be overridden by subclasses to provide the current security state of the component.
- Implementations are required to set the "securityState" property of the structured out data set
- to one of the following values:
-
- UNSECURED - If the component is not configured for any security protocol such as
- Kerberos
- SECURED_KERBEROS - If the component is configured for Kerberos
- UNKNOWN - If the security state cannot be determined
- ERROR - If the component is supposed to be secured, but there are issues with the
- configuration. For example, if the component is configured for Kerberos
- but the configured principal and keytab file fail to kinit
- """
- self.put_structured_out({"securityState": "UNKNOWN"})
-
def generate_configs_get_template_file_content(self, filename, dicts):
config = self.get_config()
content = ''