* merge loadbot into this repo

This commit is contained in:
Jeff Carr 2011-09-26 17:05:36 -04:00
parent 7f38244fde
commit 72d601b5bb
1 changed files with 3 additions and 2 deletions

View File

@ -33,7 +33,6 @@ if ($return eq "-1") {
my $return = system("git --version"); my $return = system("git --version");
print "git RETURN: $return\n"; print "git RETURN: $return\n";
exit;
if ($return eq "-1") { if ($return eq "-1") {
if (-e "/etc/gentoo-release") { if (-e "/etc/gentoo-release") {
@ -41,7 +40,9 @@ if ($return eq "-1") {
} elsif (-e "/etc/redhat-release") { } elsif (-e "/etc/redhat-release") {
system "yum install git -y"; system "yum install git -y";
} else { } else {
system "apt-get install git"; system "apt-get -y install git";
} }
system "ifconfig"; system "ifconfig";
} }
my $return = system("git clone http://github.com/basilarchia/benchmarks.git");