From 3637c64317c960215a8cbcb51863fd67f71a70fc Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Wed, 8 Feb 2012 22:49:38 -0800 Subject: [PATCH] Update devstack/packaging/apt.py --- devstack/packaging/apt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devstack/packaging/apt.py b/devstack/packaging/apt.py index 8c31a634..bd19b831 100644 --- a/devstack/packaging/apt.py +++ b/devstack/packaging/apt.py @@ -101,6 +101,7 @@ class AptPackager(pack.Packager): self._execute_apt(cmd) def _pkg_remove_special(self, name, pkginfo): + #TODO: maybe this should be a subclass that handles these differences if name == 'rabbitmq-server' and self.distro == settings.UBUNTU11: #https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/878597 #https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/878600 @@ -117,6 +118,7 @@ class AptPackager(pack.Packager): return False def _pkg_install_special(self, name, pkginfo): + #TODO: maybe this should be a subclass that handles these differences if name == 'rabbitmq-server' and self.distro == settings.UBUNTU11: #https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/878597 #https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/878600