diff options
author | Luke Kanies <luke@madstop.com> | 2008-10-03 16:12:49 -0500 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-10-04 08:10:09 +1000 |
commit | d2c89985bb356188ac52d00b0799cae655a9c75b (patch) | |
tree | 0c921036d756163a6499c5f088fbcebf5d0a57cc /lib | |
parent | d098a901745cf5c84731d8f46aabd225a6ffba2a (diff) | |
download | puppet-d2c89985bb356188ac52d00b0799cae655a9c75b.tar.gz puppet-d2c89985bb356188ac52d00b0799cae655a9c75b.tar.xz puppet-d2c89985bb356188ac52d00b0799cae655a9c75b.zip |
Fixed #981 - Removed 'Adding aliases' info message
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/type.rb | 2 |
1 files changed, 0 insertions, 2 deletions
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 |