summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2014-10-26 14:59:59 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2014-10-26 14:59:59 +0100
commit879c89793418b9e28fca50457ab1b3ce30bb461f (patch)
tree56e112398b1102f3aae66db46f144f3d0260c7ac /src/lib/Bcfg2/Server/Plugins
parent56d2b72b6f8b2e1a27a16dbfdab10f0b83816ceb (diff)
downloadbcfg2-879c89793418b9e28fca50457ab1b3ce30bb461f.tar.gz
bcfg2-879c89793418b9e28fca50457ab1b3ce30bb461f.tar.bz2
bcfg2-879c89793418b9e28fca50457ab1b3ce30bb461f.zip
Server/Plugins/ALC: do not require a name attribute
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/ACL.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/ACL.py b/src/lib/Bcfg2/Server/Plugins/ACL.py
index 1c1e54312..37f51a2a1 100644
--- a/src/lib/Bcfg2/Server/Plugins/ACL.py
+++ b/src/lib/Bcfg2/Server/Plugins/ACL.py
@@ -62,6 +62,7 @@ def ip_matches(ip, entry):
class IPACLFile(Bcfg2.Server.Plugin.XMLFileBacked):
""" representation of ACL ip.xml, for IP-based ACLs """
+ __identifier__ = None
actions = dict(Allow=True,
Deny=False,
Defer=None)