# File lib/mcollective/generators/data_generator.rb, line 38
      def create_plugin_content
        content_text = "%6s%s" % [" ", "query do |what|\n"]

        @outputs.each do |output|
           content_text += "%8s%s" % [" ", "result[:#{output}] = nil\n"]
        end
        content_text += "%6s%s" % [" ", "end\n"]

        # Add actions to agent file
        content_text
      end