# File lib/mcollective/pluginpackager/modulepackage_packager.rb, line 19
      def create_packages
        begin
          puts "Building module for #{@package_name} plugin."

          @tmpdir = Dir.mktmpdir('mcollective_packager')
          make_module
          run_build
          move_package

          puts "Completed building module for #{@package_name} plugin."
        ensure
          if @keep_artifacts
            puts 'Keeping build artifacts'
            puts "Build artifacts saved - #{@tmpdir}"
          else
            cleanup_tmpdirs
          end
        end
      end