diff options
author | Rob Crittenden <rcritten@redhat.com> | 2008-03-24 15:54:55 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2008-03-24 15:54:55 -0400 |
commit | 4c288e653aec9c5d58ef782f07a13b9efde6e148 (patch) | |
tree | f12861943fd91d944f99f8b63c1d905027228a35 /ipa-python | |
parent | 0b7117596d1ba201d8c8713bbc43fdbb04726d2d (diff) | |
download | freeipa-4c288e653aec9c5d58ef782f07a13b9efde6e148.tar.gz freeipa-4c288e653aec9c5d58ef782f07a13b9efde6e148.tar.xz freeipa-4c288e653aec9c5d58ef782f07a13b9efde6e148.zip |
Re-root the IPA web UI to /ipa and the XML-RPC interface to /ipaxml.
438021
Diffstat (limited to 'ipa-python')
-rw-r--r-- | ipa-python/rpcclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipa-python/rpcclient.py b/ipa-python/rpcclient.py index c3835568f..7fa075b1d 100644 --- a/ipa-python/rpcclient.py +++ b/ipa-python/rpcclient.py @@ -37,7 +37,7 @@ class RPCClient: def server_url(self, server): """Build the XML-RPC server URL from our configuration""" - return "https://" + server + "/ipa" + return "https://" + server + "/ipaxml" def setup_server(self): """Create our XML-RPC server connection using kerberos |