summaryrefslogtreecommitdiffstats
path: root/cobbler
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2009-03-03 10:50:11 -0500
committerMichael DeHaan <mdehaan@redhat.com>2009-03-03 10:50:11 -0500
commite3dd04673bb043c2b6024b3b9cbb205d6dd6cbeb (patch)
treee8c63d64e8f41e833826ece64d7dc89d7c3a54dc /cobbler
parent576ecc67d047229902dd3268d613b5a60f4e361a (diff)
downloadcobbler-e3dd04673bb043c2b6024b3b9cbb205d6dd6cbeb.tar.gz
cobbler-e3dd04673bb043c2b6024b3b9cbb205d6dd6cbeb.tar.xz
cobbler-e3dd04673bb043c2b6024b3b9cbb205d6dd6cbeb.zip
Don't run the full sync in import because during a sync very briefly all the files are rewritten and Beaker does not for some reason like this.
Conflicts: CHANGELOG
Diffstat (limited to 'cobbler')
-rw-r--r--cobbler/action_import.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/cobbler/action_import.py b/cobbler/action_import.py
index 04701da4..2008c53c 100644
--- a/cobbler/action_import.py
+++ b/cobbler/action_import.py
@@ -209,11 +209,8 @@ class Importer:
print _("---------------- (associating kickstarts)")
self.kickstart_finder(distros_added)
- # ensure everything is nicely written out to the filesystem
- # (which is not so neccessary in newer Cobbler but we're paranoid)
-
- print _("---------------- (syncing)")
- self.api.sync()
+ # ensure bootloaders are present
+ self.api.pxegen.copy_bootloaders()
return True