Return-Path: X-Original-To: apmail-incubator-bigtop-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-bigtop-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8657F97A5 for ; Mon, 5 Mar 2012 21:46:21 +0000 (UTC) Received: (qmail 8427 invoked by uid 500); 5 Mar 2012 21:46:21 -0000 Delivered-To: apmail-incubator-bigtop-commits-archive@incubator.apache.org Received: (qmail 8391 invoked by uid 500); 5 Mar 2012 21:46:21 -0000 Mailing-List: contact bigtop-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bigtop-dev@incubator.apache.org Delivered-To: mailing list bigtop-commits@incubator.apache.org Received: (qmail 8384 invoked by uid 99); 5 Mar 2012 21:46:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2012 21:46:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2012 21:46:20 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 75E452388ABB; Mon, 5 Mar 2012 21:46:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1297238 - /incubator/bigtop/trunk/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy Date: Mon, 05 Mar 2012 21:46:00 -0000 To: bigtop-commits@incubator.apache.org From: rvs@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120305214600.75E452388ABB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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();