From 99dc1148c07a92c0da60046da745f833627af5c1 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 18 Oct 2006 09:53:39 -0400 Subject: Serialize changes during imports, since NFS traversal is very slow. --- cobbler/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cobbler/api.py') diff --git a/cobbler/api.py b/cobbler/api.py index 0282c43..720bcbc 100644 --- a/cobbler/api.py +++ b/cobbler/api.py @@ -124,7 +124,7 @@ class BootAPI: Imports either a tree (path) or mirror (ftp/http). Mirror support really doesn't exist yet... TBA. """ - importer = action_import.Importer(self._config, tree_path, mirror_url, mirror_name) + importer = action_import.Importer(self, self._config, tree_path, mirror_url, mirror_name) return importer.run() def serialize(self): -- cgit