summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSam Livingston-Gray <geeksam@gmail.com>2009-07-13 15:22:54 -0700
committerJames Turnbull <james@lovedthanlost.net>2009-07-14 21:15:15 +1000
commit22f56327e74a1201cf25d82e980b2500057d698e (patch)
tree46011214d7f6dbf8176c63219158aff4034c6668 /lib
parent65b01375cedd878818f433a2c09fc8128f912d36 (diff)
downloadpuppet-22f56327e74a1201cf25d82e980b2500057d698e.tar.gz
puppet-22f56327e74a1201cf25d82e980b2500057d698e.tar.xz
puppet-22f56327e74a1201cf25d82e980b2500057d698e.zip
Fixed #2410 - default acl logs as info instead of warn.
Signed-off-by: Sam Livingston-Gray <geeksam@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/network/rest_authconfig.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/network/rest_authconfig.rb b/lib/puppet/network/rest_authconfig.rb
index 6e89cb85b..9a8c34935 100644
--- a/lib/puppet/network/rest_authconfig.rb
+++ b/lib/puppet/network/rest_authconfig.rb
@@ -58,7 +58,7 @@ module Puppet
def insert_default_acl
DEFAULT_ACL.each do |acl|
unless rights[acl[:acl]]
- Puppet.warning "Inserting default '#{acl[:acl]}'(%s) acl because none were found in '%s'" % [acl[:authenticated] ? "auth" : "non-auth" , ( !exists? ? "no auth.conf file configured" : @file)]
+ Puppet.info "Inserting default '#{acl[:acl]}'(%s) acl because none were found in '%s'" % [acl[:authenticated] ? "auth" : "non-auth" , ( !exists? ? "no auth.conf file configured" : @file)]
mk_acl(acl)
end
end