diff options
author | Rob Crittenden <rcritten@redhat.com> | 2010-05-06 16:41:59 -0400 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2010-05-06 15:17:16 -0600 |
commit | 3bf7268d749f869d1d238caf2ee9a6c28ed40280 (patch) | |
tree | 5aa944460b1efeafa06bc4c5eaf2d3a1a4f8f818 /ipa-client/ipa-install | |
parent | cd5eddd843cc36b1fa6444996fc1ff1ce7a1e22b (diff) | |
download | freeipa-3bf7268d749f869d1d238caf2ee9a6c28ed40280.tar.gz freeipa-3bf7268d749f869d1d238caf2ee9a6c28ed40280.tar.xz freeipa-3bf7268d749f869d1d238caf2ee9a6c28ed40280.zip |
Add simple test to see if client is already configured
If this ever gets out of sync the user can always remove
/var/lib/ipa-client/sysrestore/*, they just need to understand the
implications.
One potential problem is with certmonger. If you install the client
and then re-install without uninstalling then the subsequent
certificate request by certmonger will fail because it will already
be tracking a certificate in /etc/pki/nssdb of the same nickname and
subject (the old cert).
Diffstat (limited to 'ipa-client/ipa-install')
-rwxr-xr-x | ipa-client/ipa-install/ipa-client-install | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install index a37914fd6..9d6d398e4 100755 --- a/ipa-client/ipa-install/ipa-client-install +++ b/ipa-client/ipa-install/ipa-client-install @@ -440,6 +440,10 @@ def main(): if options.uninstall: return uninstall(options) + if fstore.has_files(): + print "IPA client is already configured on this system." + return 1 + cli_domain = None cli_server = None cli_realm = None |