summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Acl.py
diff options
context:
space:
mode:
authorMatt Schwager <schwag09@gmail.com>2012-10-15 12:34:07 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-12 08:35:32 -0500
commite8a5500535cb7c23ef3d687304033e50e80dbd3f (patch)
treee612938dde26bb1ea50a9d241cf519c247f30205 /src/lib/Bcfg2/Server/Plugins/Acl.py
parent2ad656a8b9fe4fd364dff3a4f6e419699438c714 (diff)
downloadbcfg2-e8a5500535cb7c23ef3d687304033e50e80dbd3f.tar.gz
bcfg2-e8a5500535cb7c23ef3d687304033e50e80dbd3f.tar.bz2
bcfg2-e8a5500535cb7c23ef3d687304033e50e80dbd3f.zip
IP based ACLs working for CherryPy Server. Still need to implement BuiltinServer and test.
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Acl.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Acl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Acl.py b/src/lib/Bcfg2/Server/Plugins/Acl.py
index 61162dfca..dd1077da1 100644
--- a/src/lib/Bcfg2/Server/Plugins/Acl.py
+++ b/src/lib/Bcfg2/Server/Plugins/Acl.py
@@ -13,7 +13,7 @@ class AclFile(Bcfg2.Server.Plugin.XMLFileBacked):
if not os.path.exists(filename):
LOGGER.warning("Acl: %s missing. "
"Creating empty one for you." % filename)
- open(filename, "w").write("<Acl></Acl>")
+ open(filename, "w").write("<IPs></IPs>")
try:
fam = core.fam