From 4b606161492e85a2d2b4753d326ec4532c060345 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 5 Apr 2007 10:56:44 -0400 Subject: Remove unneeded param. --- cobbler/action_reposync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cobbler/action_reposync.py') 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:] -- cgit