summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/cainstance.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install/cainstance.py')
-rw-r--r--ipaserver/install/cainstance.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py
index 36a1db060..ce0561a08 100644
--- a/ipaserver/install/cainstance.py
+++ b/ipaserver/install/cainstance.py
@@ -1327,7 +1327,7 @@ class CAInstance(DogtagInstance):
secdir=paths.HTTPD_ALIAS_DIR,
pre_command=None,
post_command='renew_ra_cert')
- except (ipautil.CalledProcessError, RuntimeError), e:
+ except RuntimeError, e:
self.log.error(
"certmonger failed to start tracking certificate: %s", e)
@@ -1369,7 +1369,7 @@ class CAInstance(DogtagInstance):
secdir=self.dogtag_constants.ALIAS_DIR,
pre_command=None,
post_command=None)
- except (ipautil.CalledProcessError, RuntimeError), e:
+ except RuntimeError, e:
self.log.error(
"certmonger failed to start tracking certificate: %s", e)
@@ -1382,7 +1382,7 @@ class CAInstance(DogtagInstance):
cmonger.start()
try:
certmonger.stop_tracking(paths.HTTPD_ALIAS_DIR, nickname='ipaCert')
- except (ipautil.CalledProcessError, RuntimeError), e:
+ except RuntimeError, e:
root_logger.error(
"certmonger failed to stop tracking certificate: %s", e)
cmonger.stop()