From 3fe142277bb45e1b568081d73bec19a794833ba1 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 28 May 2008 15:49:39 -0400 Subject: Make URLs consistent --- cobbler/action_validate.py | 4 ++-- 1 file 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 -- cgit