# File lib/puppet/provider/mcx/mcxcontent.rb, line 174 174: def exists? 175: # JJM Just re-use the content method and see if it's empty. 176: begin 177: mcx = content 178: rescue Puppet::ExecutionFailure => e 179: return false 180: end 181: has_mcx = ! mcx.empty? 182: return has_mcx 183: end