summaryrefslogtreecommitdiffstats
path: root/cobbler/action_reposync.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-04-05 10:56:44 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-04-05 10:56:44 -0400
commit4b606161492e85a2d2b4753d326ec4532c060345 (patch)
tree7f65be71d22a6604a92cbbbac5b387f18cde1c2c /cobbler/action_reposync.py
parent6203db56356e0c01f809b05a32ff6f634caccc63 (diff)
downloadthird_party-cobbler-4b606161492e85a2d2b4753d326ec4532c060345.tar.gz
third_party-cobbler-4b606161492e85a2d2b4753d326ec4532c060345.tar.xz
third_party-cobbler-4b606161492e85a2d2b4753d326ec4532c060345.zip
Remove unneeded param.
Diffstat (limited to 'cobbler/action_reposync.py')
-rw-r--r--cobbler/action_reposync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/action_reposync.py b/cobbler/action_reposync.py
index 5cab392..9ff1753 100644
--- a/cobbler/action_reposync.py
+++ b/cobbler/action_reposync.py
@@ -84,7 +84,7 @@ class RepoSync:
os.makedirs(temp_path)
if not repo.mirror.lower().startswith("rhn://"):
- cmd = "/usr/bin/reposync --config=%s --repoid=%s --download_path=%s" % (temp_file, repo.name, store_path)
+ cmd = "/usr/bin/reposync --repoid=%s --download_path=%s" % (repo.name, store_path)
print "- %s" % cmd
else:
rest = repo.mirror[6:]