summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornfagerlund <nick.fagerlund@gmail.com>2011-03-14 13:20:57 -0700
committernfagerlund <nick.fagerlund@gmail.com>2011-03-14 13:20:57 -0700
commit25944edd1e2dae351a75682fffdd1ae1682e498e (patch)
treef74e5df70fc3c5be97b395a22dd54a8454e15658
parent37e988df4870723e66e6961fd17bff19c70e9f30 (diff)
parent02626335b5e7fdbecf46639e4a4efe8e18ead982 (diff)
downloadpuppet-25944edd1e2dae351a75682fffdd1ae1682e498e.tar.gz
puppet-25944edd1e2dae351a75682fffdd1ae1682e498e.tar.xz
puppet-25944edd1e2dae351a75682fffdd1ae1682e498e.zip
Merge branch 'ticket/2.6.next/6707' into 2.6.next
-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 7a6147a82..e6067612a 100644
--- a/lib/puppet/network/rest_authconfig.rb
+++ b/lib/puppet/network/rest_authconfig.rb
@@ -61,7 +61,7 @@ module Puppet
def insert_default_acl
DEFAULT_ACL.each do |acl|
unless rights[acl[:acl]]
- Puppet.info "Inserting default '#{acl[:acl]}'(#{acl[:authenticated] ? "auth" : "non-auth"}) acl because #{( !exists? ? "#{Puppet[:rest_authconfig]} doesn't exist" : "none where found in '#{@file}'")}"
+ Puppet.info "Inserting default '#{acl[:acl]}'(#{acl[:authenticated] ? "auth" : "non-auth"}) ACL because #{( !exists? ? "#{Puppet[:rest_authconfig]} doesn't exist" : "none were found in '#{@file}'")}"
mk_acl(acl)
end
end