summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Bcfg2/Server/Core.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/Bcfg2/Server/Core.py b/src/lib/Bcfg2/Server/Core.py
index 7aa07f2a2..34916557a 100644
--- a/src/lib/Bcfg2/Server/Core.py
+++ b/src/lib/Bcfg2/Server/Core.py
@@ -1208,14 +1208,6 @@ class BaseCore(object):
return self.metadata.AuthenticateConnection(acert, user, password,
address)
- def check_acls(self, client_ip):
- """ Check if client IP is in list of accepted IPs """
- try:
- return self.plugins['Acl'].config.check_acl(client_ip)
- except KeyError:
- # No ACL means accept all incoming ips
- return True
-
@exposed
def GetDecisionList(self, address, mode):
""" Get the decision list for the client with :func:`GetDecisions`.