summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-04-14 18:46:52 +1000
committerJames Turnbull <james@lovedthanlost.net>2010-04-17 18:11:36 +1000
commitf351e2dcf0c133c7e800f09f9a6f65146d856bde (patch)
tree5d4f4922943d3240a3f8e686f35c6ee96e02e434 /lib/puppet/network
parentcf7e6967632ba3f1d3b7ae21ccaf5daed9cec6e7 (diff)
downloadpuppet-f351e2dcf0c133c7e800f09f9a6f65146d856bde.tar.gz
puppet-f351e2dcf0c133c7e800f09f9a6f65146d856bde.tar.xz
puppet-f351e2dcf0c133c7e800f09f9a6f65146d856bde.zip
Renamed all references to Reductive Labs to Puppet Labs
Diffstat (limited to 'lib/puppet/network')
-rwxr-xr-xlib/puppet/network/authstore.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/network/authstore.rb b/lib/puppet/network/authstore.rb
index a7029a0a0..d5ba3ef78 100755
--- a/lib/puppet/network/authstore.rb
+++ b/lib/puppet/network/authstore.rb
@@ -183,9 +183,9 @@ module Puppet
# interpolate a pattern to replace any
# backreferences by the given match
- # for instance if our pattern is $1.reductivelabs.com
+ # for instance if our pattern is $1.puppetlabs.com
# and we're called with a MatchData whose capture 1 is puppet
- # we'll return a pattern of puppet.reductivelabs.com
+ # we'll return a pattern of puppet.puppetlabs.com
def interpolate(match)
clone = dup
clone.pattern = clone.pattern.reverse.collect do |p|
@@ -242,7 +242,7 @@ module Puppet
when /^\*(\.(\w[-\w]*)){1,}$/ # *.domain.com
host_sans_star = munge_name(value)[0..-2]
[:domain,:inexact,host_sans_star.length,host_sans_star]
- when /\$\d+/ # a backreference pattern ala $1.reductivelabs.com or 192.168.0.$1 or $1.$2
+ when /\$\d+/ # a backreference pattern ala $1.puppetlabs.com or 192.168.0.$1 or $1.$2
[:dynamic,:exact,nil,munge_name(value)]
when /^\w[-.@\w]*$/ # ? Just like a host name but allow '@'s and ending '.'s
[:opaque,:exact,nil,[value]]