Author: rvs Date: Sat Mar 24 02:14:37 2012 New Revision: 1304700 URL: http://svn.apache.org/viewvc?rev=1304700&view=rev Log: BIGTOP-481. fix the way to handle repo key for Debian like system (Johnny Zhang via rvs)
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=1304700&r1=1304699&r2=1304700&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 Sat Mar 24 02:14:37 2012 @@ -51,7 +51,9 @@ public abstract class PackageManager { * @param key an optional (can be null) cryptographic key for authenticating the content of the repository * @return int return code of the operation: o in case of success, non-zero otherwise */ - abstract public int addBinRepo(String record, String url, String key) + public int addBinRepo(String record, String url, String key) { + addBinRepo(record, url); + } /** * Register a binary package repository so that packages can be accessed from it. * NOTE: repository management is assumed to follow a KVP API with unique implementation