You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ds...@apache.org on 2016/03/09 11:27:57 UTC

ambari git commit: AMBARI-15345 Multiple issues during EU from HDP 2.4.0.0-157 to 2.4.0.0-169 on SLES 11 (dsen)

Repository: ambari
Updated Branches:
  refs/heads/branch-2.2 5ad1ae0b9 -> 86bb1415b


AMBARI-15345 Multiple issues during EU from HDP 2.4.0.0-157 to 2.4.0.0-169 on SLES 11 (dsen)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/86bb1415
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/86bb1415
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/86bb1415

Branch: refs/heads/branch-2.2
Commit: 86bb1415b1b6eae351bd40ff57515af579561dd0
Parents: 5ad1ae0
Author: Dmytro Sen <ds...@apache.org>
Authored: Wed Mar 9 12:27:45 2016 +0200
Committer: Dmytro Sen <ds...@apache.org>
Committed: Wed Mar 9 12:27:45 2016 +0200

----------------------------------------------------------------------
 .../python/resource_management/core/providers/package/zypper.py    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/86bb1415/ambari-common/src/main/python/resource_management/core/providers/package/zypper.py
----------------------------------------------------------------------
diff --git a/ambari-common/src/main/python/resource_management/core/providers/package/zypper.py b/ambari-common/src/main/python/resource_management/core/providers/package/zypper.py
index c3447e6..a519ce0 100644
--- a/ambari-common/src/main/python/resource_management/core/providers/package/zypper.py
+++ b/ambari-common/src/main/python/resource_management/core/providers/package/zypper.py
@@ -49,7 +49,7 @@ class ZypperProvider(PackageProvider):
           use_repos.extend(active_base_repos)
         use_repos_options = []
         for repo in use_repos:
-          use_repos_options = use_repos_options + ['--repo', repo]
+          use_repos_options = use_repos_options + ['--from', repo]
         cmd = cmd + use_repos_options
 
       cmd = cmd + [name]