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