From 752e167497eca87632261dec7bbb352cd0e599c8 Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: May 16 2017 11:44:08 +0000 Subject: ipa-server-install: fix uninstall ipa-server-install --uninstall fails to stop tracking the certificates because it assigns a tuple to the variable nicknames, then tries to call nicknames.append(). This is a regression introduced by 21f4cbf8. Assignment should be done using nicknames = list(self.tracking_reqs) instead. https://pagure.io/freeipa/issue/6950 Reviewed-By: Jan Cholasta --- diff --git a/ipaserver/install/dogtaginstance.py b/ipaserver/install/dogtaginstance.py index 29c74b6..1fdc3e5 100644 --- a/ipaserver/install/dogtaginstance.py +++ b/ipaserver/install/dogtaginstance.py @@ -319,7 +319,7 @@ class DogtagInstance(service.Service): services.knownservices.messagebus.start() cmonger.start() - nicknames = self.tracking_reqs + nicknames = list(self.tracking_reqs) if self.server_cert_name is not None: nicknames.append(self.server_cert_name)