# File lib/puppet/type.rb, line 733 733: def noop? 734: # If we're not a host_config, we're almost certainly part of 735: # Settings, and we want to ignore 'noop' 736: return false if catalog and ! catalog.host_config? 737: 738: if defined?(@noop) 739: @noop 740: else 741: Puppet[:noop] 742: end 743: end