From c235b3fb730ea0fba733ae90e7179d15c289ca68 Mon Sep 17 00:00:00 2001 From: Travis Rhoden Date: Tue, 4 Aug 2015 14:08:04 -0700 Subject: [PATCH] [RM-12477] kill install_priorities_plugin() Signed-off-by: Travis Rhoden --- ceph_deploy/util/pkg_managers.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ceph_deploy/util/pkg_managers.py b/ceph_deploy/util/pkg_managers.py index feb86b5..c554abf 100644 --- a/ceph_deploy/util/pkg_managers.py +++ b/ceph_deploy/util/pkg_managers.py @@ -259,10 +259,6 @@ class DNF(RPMManagerBase): executable = 'dnf' name = 'dnf' - def install_priorities_plugin(self): - # DNF supports priorities natively - pass - class Yum(RPMManagerBase): """ @@ -272,14 +268,6 @@ class Yum(RPMManagerBase): executable = 'yum' name = 'yum' - def install_priorities_plugin(self): - package_name = 'yum-plugin-priorities' - - if self.remote_info.normalized_name == 'centos': - if self.remote_info.normalized_release.int_major != 6: - package_name = 'yum-priorities' - self.install(package_name) - class Apt(PackageManager): """ -- 2.47.3