summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-08-28 16:47:43 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-08-28 16:47:43 -0400
commitef21e4549bf2972e71063c41efaa9fffc5268861 (patch)
tree6a69ceb3de94d2034d41f6f0cece570f58652f95
parente29737d38da69887368fc0acd3666fd78e842a80 (diff)
downloadthird_party-cobbler-ef21e4549bf2972e71063c41efaa9fffc5268861.tar.gz
third_party-cobbler-ef21e4549bf2972e71063c41efaa9fffc5268861.tar.xz
third_party-cobbler-ef21e4549bf2972e71063c41efaa9fffc5268861.zip
--desolvedeps not --resolve
-rw-r--r--CHANGELOG1
-rw-r--r--cobbler/action_reposync.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index c089492..2f443bf 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -16,6 +16,7 @@ Cobbler CHANGELOG
- added some more unit tests
- fix typo down one error path in cobbler sync.
- fix reposync handling when using rsync protocol and directory paths do not contain arch
+- allow basic usage of Cheetah variables in config files @@server@@, etc.
* Thu Aug 09 2007 - 0.6.0
- bugfix in error path in "cobbler check"
diff --git a/cobbler/action_reposync.py b/cobbler/action_reposync.py
index 8c7e242..491eb27 100644
--- a/cobbler/action_reposync.py
+++ b/cobbler/action_reposync.py
@@ -131,7 +131,7 @@ class RepoSync:
# older yumdownloader sometimes explodes on --resolvedeps
# if this happens to you, upgrade yum & yum-utils
- cmd = "/usr/bin/yumdownloader --resolve -c %s --destdir=%s %s" %(temp_file, dest_path, " ".join(repo.rpm_list))
+ cmd = "/usr/bin/yumdownloader --resolvedeps -c %s --destdir=%s %s" %(temp_file, dest_path, " ".join(repo.rpm_list))
print _("- %s") % cmd
cmds.append(cmd)
else: