# File lib/mcollective/generators/agent_generator.rb, line 33
      def create_plugin_content
        content_text = ""

        # Add actions to agent file
        @actions.each_with_index do |action, i|
          content_text +=  "%6s%s" % [" ", "action \"#{action}\" do\n"]
          content_text +=  "%6s%s" % [" ", "end\n"]
          content_text += "\n" unless @actions.size == (i + 1)
        end
        content_text
      end