diff options
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | lib/puppet/type.rb | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,8 @@ 0.24.x Fixing #947 - pluginsync no longer fails poorly when no plugins exist + Fixed #981 - Removed 'Adding aliases' info message + Fixing #1614 - Environments no longer have to be listed out Fixed #1628 - Changed node search to use certname rather than Facter hostname diff --git a/lib/puppet/type.rb b/lib/puppet/type.rb index e377a3547..7e8654921 100644 --- a/lib/puppet/type.rb +++ b/lib/puppet/type.rb @@ -1472,8 +1472,6 @@ class Type raise(ArgumentError, "Cannot add aliases without a catalog") unless @resource.catalog - @resource.info "Adding aliases %s" % aliases.collect { |a| a.inspect }.join(", ") - aliases.each do |other| if obj = @resource.catalog.resource(@resource.class.name, other) unless obj.object_id == @resource.object_id |