summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authornfagerlund <nick.fagerlund@gmail.com>2011-03-14 13:19:17 -0700
committernfagerlund <nick.fagerlund@gmail.com>2011-03-14 13:19:17 -0700
commit02626335b5e7fdbecf46639e4a4efe8e18ead982 (patch)
treef74e5df70fc3c5be97b395a22dd54a8454e15658 /lib/puppet
parent37e988df4870723e66e6961fd17bff19c70e9f30 (diff)
downloadpuppet-02626335b5e7fdbecf46639e4a4efe8e18ead982.tar.gz
puppet-02626335b5e7fdbecf46639e4a4efe8e18ead982.tar.xz
puppet-02626335b5e7fdbecf46639e4a4efe8e18ead982.zip
(#6707) Fix typo in rest_authconfig.rb
"Where" -> "were." Capitalize "ACL."
Diffstat (limited to 'lib/puppet')
-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