summaryrefslogtreecommitdiffstats
path: root/cobbler/action_sync.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-12-12 16:51:45 -0500
committerJim Meyering <jim@meyering.net>2006-12-12 16:51:45 -0500
commit7e1b7852d71959778269f07feb917f8a71b6d625 (patch)
tree2a7c6a7e3fa4cf0b969b51894359ab0c7fdec9d0 /cobbler/action_sync.py
parentedec049f66add415f402e251b217c9f09f589e40 (diff)
downloadthird_party-cobbler-7e1b7852d71959778269f07feb917f8a71b6d625.tar.gz
third_party-cobbler-7e1b7852d71959778269f07feb917f8a71b6d625.tar.xz
third_party-cobbler-7e1b7852d71959778269f07feb917f8a71b6d625.zip
Fix mirror URL
Diffstat (limited to 'cobbler/action_sync.py')
-rw-r--r--cobbler/action_sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py
index 93f428a..56e1c03 100644
--- a/cobbler/action_sync.py
+++ b/cobbler/action_sync.py
@@ -298,7 +298,7 @@ class BootSync:
repo = self.repos.find(r)
if repo is None:
raise cexceptions.CobblerException("no_repo",r)
- http_url = "http://%s/repo_mirror/%s" % (self.settings.server, repo.name)
+ http_url = "http://%s/cobbler/repo_mirror/%s" % (self.settings.server, repo.name)
buf = buf + "repo --name=%s --baseurl=%s\n" % (repo.name, http_url)
return buf