From b4d039871de1482a57570b24db7e9a3b877bac90 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 11 Jan 2010 11:44:37 -0500 Subject: Missed explicit reference to pki-ca, replace with self.service_name --- ipaserver/install/cainstance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipaserver/install/cainstance.py') diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py index e74469f76..a43809cb1 100644 --- a/ipaserver/install/cainstance.py +++ b/ipaserver/install/cainstance.py @@ -610,9 +610,9 @@ class CAInstance(service.Service): sys.exit(0) # pkisilent doesn't return 1 on error so look at the output of - # /sbin/service pki-ca status. It will tell us if the instance + # /sbin/service pki-cad status. It will tell us if the instance # still needs to be configured. - (stdout, stderr, returncode) = ipautil.run(["/sbin/service", "pki-ca", "status"]) + (stdout, stderr, returncode) = ipautil.run(["/sbin/service", self.service_name, "status"]) try: stdout.index("CONFIGURED!") raise RuntimeError("pkisilent failed to configure instance.") -- cgit