summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-07 23:33:38 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-07 23:33:38 +0000
commit23f982ecda3fd74867d404b5e784f072db9a1cde (patch)
tree18a122eec695455c794caa554012fe1ee721ffa6 /Rakefile
parent1d739731b20a5dd10a190d783556d5c5a0275137 (diff)
downloadpuppet-23f982ecda3fd74867d404b5e784f072db9a1cde.tar.gz
puppet-23f982ecda3fd74867d404b5e784f072db9a1cde.tar.xz
puppet-23f982ecda3fd74867d404b5e784f072db9a1cde.zip
Undoing the merge that happened in 785
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@786 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile11
1 files changed, 3 insertions, 8 deletions
diff --git a/Rakefile b/Rakefile
index a8064e318..4f0a7d728 100644
--- a/Rakefile
+++ b/Rakefile
@@ -35,12 +35,8 @@ end
DOWNDIR = "/export/docroots/reductivelabs.com/htdocs/downloads"
-if ENV['HOSTS']
- TESTHOSTS = ENV['HOSTS'].split(/\s+/)
-else
- TESTHOSTS = %w{fedora1 rh3a kirby culain}
-end
-#TESTHOSTS = %w{sol10b}
+#TESTHOSTS = %w{sol10b fedora1 rh3a}
+TESTHOSTS = %w{sol10b}
# The default task is run if rake is given no explicit arguments.
@@ -344,9 +340,8 @@ task :hosttest do
out = ""
TESTHOSTS.each { |host|
puts "testing %s" % host
- cwd = Dir.getwd
#out += %x{ssh #{host} 'cd puppet/test; sudo ./test' 2>&1}
- sh %{ssh #{host} 'cd #{cwd}/test; sudo ./test' 2>&1}
+ sh %{ssh #{host} 'cd puppet/test; sudo ./test' 2>&1}
}
#IO.popen("mail -s 'Puppet Test Results' luke@madstop.com") do |m|