diff options
author | Martin Kosek <mkosek@redhat.com> | 2011-07-18 09:33:57 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-07-18 09:36:43 +0200 |
commit | 50a2c45760d51e7a13888702e1a047a113bc1f5e (patch) | |
tree | 26445179b4e7a072800072f78a1cf5cf1a5740e1 /install/tools/ipa-nis-manage | |
parent | 5f0adc3fbe5b193a57b05eed70b9f59463d9d9da (diff) | |
download | freeipa-50a2c45760d51e7a13888702e1a047a113bc1f5e.tar.gz freeipa-50a2c45760d51e7a13888702e1a047a113bc1f5e.tar.xz freeipa-50a2c45760d51e7a13888702e1a047a113bc1f5e.zip |
Check IPA configuration in install tools
Install tools may fail with unexpected error when IPA server is not
installed on a system. Improve user experience by implementing
a check to affected tools.
https://fedorahosted.org/freeipa/ticket/1327
https://fedorahosted.org/freeipa/ticket/1347
Diffstat (limited to 'install/tools/ipa-nis-manage')
-rwxr-xr-x | install/tools/ipa-nis-manage | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/tools/ipa-nis-manage b/install/tools/ipa-nis-manage index f61610af8..6eb619c3c 100755 --- a/install/tools/ipa-nis-manage +++ b/install/tools/ipa-nis-manage @@ -87,6 +87,8 @@ def main(): if os.getegid() != 0: sys.exit('Must be root to use this tool.') + installutils.check_server_configuration() + options, args = parse_options() if options.debug: loglevel = logging.DEBUG |