You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by rv...@apache.org on 2012/03/05 22:46:00 UTC

svn commit: r1297238 - /incubator/bigtop/trunk/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy

Author: rvs
Date: Mon Mar  5 21:46:00 2012
New Revision: 1297238

URL: http://svn.apache.org/viewvc?rev=1297238&view=rev
Log:
BIGTOP-427 Add support for Oracle Linux (Will McQueen via plinnell)

(cherry picked from commit 6456de0cdb5321c8aa7a18deb05353a8e9d10ebf)

Modified:
    incubator/bigtop/trunk/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy

Modified: incubator/bigtop/trunk/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy
URL: http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy?rev=1297238&r1=1297237&r2=1297238&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy (original)
+++ incubator/bigtop/trunk/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy Mon Mar  5 21:46:00 2012
@@ -209,7 +209,7 @@ public abstract class PackageManager {
     switch (linux_flavor ?: OS.linux_flavor) {
       case ~/(?is).*(ubuntu|debian).*/:
         return new AptCmdLinePackageManager();
-      case ~/(?is).*(redhat|centos|rhel|fedora).*/:
+      case ~/(?is).*(redhat|centos|rhel|fedora|enterpriseenterpriseserver).*/:
         return new YumCmdLinePackageManager();
       case ~/(?is).*(suse|sles|sled).*/:
         return new ZypperCmdLinePackageManager();