diff options
author | Rob Crittenden <rcritten@redhat.com> | 2010-05-03 15:21:51 -0400 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2010-05-03 13:41:18 -0600 |
commit | 04e9056ec2b6e0360f3f3545fd638ecc17aaad2c (patch) | |
tree | b9fefef29f7ba68c1932aac39f7b2bedfc85d356 /ipaserver/install/bindinstance.py | |
parent | 6d35812252cb4fcf34cf13bf88cbb705560afc3a (diff) | |
download | freeipa-04e9056ec2b6e0360f3f3545fd638ecc17aaad2c.tar.gz freeipa-04e9056ec2b6e0360f3f3545fd638ecc17aaad2c.tar.xz freeipa-04e9056ec2b6e0360f3f3545fd638ecc17aaad2c.zip |
Make the installer/uninstaller more aware of its state
We have had a state file for quite some time that is used to return
the system to its pre-install state. We can use that to determine what
has been configured.
This patch:
- uses the state file to determine if dogtag was installed
- prevents someone from trying to re-install an installed server
- displays some output when uninstalling
- re-arranges the ipa_kpasswd installation so the state is properly saved
- removes pkiuser if it was added by the installer
- fetches and installs the CA on both masters and clients
Diffstat (limited to 'ipaserver/install/bindinstance.py')
-rw-r--r-- | ipaserver/install/bindinstance.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ipaserver/install/bindinstance.py b/ipaserver/install/bindinstance.py index d584e0af8..b57fc9f0d 100644 --- a/ipaserver/install/bindinstance.py +++ b/ipaserver/install/bindinstance.py @@ -377,6 +377,9 @@ class BindInstance(service.Service): resolv_fd.close() def uninstall(self): + if self.is_configured(): + self.print_msg("Unconfiguring %s" % self.service_name) + running = self.restore_state("running") enabled = self.restore_state("enabled") |