From 2cfbb55145b68cc9c91f2511d4f766a1cb96b1fd Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Sun, 11 Jan 2009 15:13:16 -0500 Subject: Whole bunch of network work, good time to throw a commit out. At this point I can manipulate network objects via the CLI. Nothing intelligent is going on under the hood yet. --- cobbler/action_litesync.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'cobbler/action_litesync.py') diff --git a/cobbler/action_litesync.py b/cobbler/action_litesync.py index 7773455e..72172469 100644 --- a/cobbler/action_litesync.py +++ b/cobbler/action_litesync.py @@ -58,6 +58,7 @@ class BootLiteSync: self.images = config.images() self.settings = config.settings() self.repos = config.repos() + self.networks = config.networks() self.sync = config.api.get_sync(verbose) def add_single_distro(self, name): @@ -184,3 +185,8 @@ class BootLiteSync: else: utils.rmfile(os.path.join(bootloc, filename)) + # not sure sure I actually need anything special to litesync networks + def add_single_network(self, name): + pass + def remote_single_network(self, name): + pass -- cgit