summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-05-28 15:49:39 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-05-28 15:49:39 -0400
commit3fe142277bb45e1b568081d73bec19a794833ba1 (patch)
tree368e094f190bc3c3be84a0589230b34a070c8413
parent7c6a82ed58f9f8a871531f067917f50505d80b13 (diff)
downloadthird_party-cobbler-3fe142277bb45e1b568081d73bec19a794833ba1.tar.gz
third_party-cobbler-3fe142277bb45e1b568081d73bec19a794833ba1.tar.xz
third_party-cobbler-3fe142277bb45e1b568081d73bec19a794833ba1.zip
Make URLs consistent
-rw-r--r--cobbler/action_validate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cobbler/action_validate.py b/cobbler/action_validate.py
index 44f3a9a..c0b1f4a 100644
--- a/cobbler/action_validate.py
+++ b/cobbler/action_validate.py
@@ -68,9 +68,9 @@ class Validate:
if not ks.startswith("/"):
url = self.kickstart
elif is_profile:
- url = "http://%s/cblr/svc/?op=ks;profile=%s" % (server,obj.name)
+ url = "http://%s/cblr/svc/op/ks/profile/%s" % (server,obj.name)
else:
- url = "http://%s/cblr/svc/?op=ks;system=%s" % (server,obj.name)
+ url = "http://%s/cblr/svc/op/ks/system/%s" % (server,obj.name)
print "----------------------------"
print "checking url: %s" % url