From ad0d92ce03d819e2da096f8ef4737955986d4d1d Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Wed, 1 Jun 2011 11:16:58 -0700 Subject: [PATCH] removed Rakefile in favor of submodules. --- Rakefile | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Rakefile diff --git a/Rakefile b/Rakefile deleted file mode 100644 index 13b17a4dd..000000000 --- a/Rakefile +++ /dev/null @@ -1,31 +0,0 @@ -remote_modules = [ - 'git@github.com:bodepd/puppet-apt.git', - 'git@github.com:bodepd/puppetlabs-mysql.git' , - 'git@github.com:bodepd/puppetlabs-gcc.git', - 'git@github.com:bodepd/puppetlabs-git.git', - 'git@github.com:bodepd/puppetlabs-rabbitmq.git', - 'git@github.com:bodepd/puppet-openstack.git', -] - -task :prepare do - ignore_add = [] - puts 'Trying to download remote packages' - ignore_file = File.join(File.dirname(__FILE__), '.gitignore') - FileUtils.touch(ignore_file) unless File.exists?(ignore_file) - File.open(ignore_file, 'a') do |fh| - remote_modules.each do |mymodule| - if mymodule =~ /.*?\/(\w+-(\w+))\.git$/ - unless File.exists?($2) - puts `git clone #{mymodule}` - puts "mv #{$1} #{$2}" - FileUtils.mv($1, $2) - end - if File.read(ignore_file).grep(/#{mymodule}/).empty? - fh.puts($2) - end - else - raise ArgumentError, "Invalid module name #{mymodule}" - end - end - end -end