summaryrefslogtreecommitdiffstats
path: root/cobbler/action_litesync.py
diff options
context:
space:
mode:
authorJohn Eckersberg <jeckersb@redhat.com>2009-01-11 15:13:16 -0500
committerJohn Eckersberg <jeckersb@redhat.com>2009-03-13 13:52:33 -0400
commit2cfbb55145b68cc9c91f2511d4f766a1cb96b1fd (patch)
tree28c19c5dbdd736eda421ee82683bfc1a419da12d /cobbler/action_litesync.py
parentfe8a0d85339655a7c68f32ebf40db70839f60437 (diff)
downloadcobbler-2cfbb55145b68cc9c91f2511d4f766a1cb96b1fd.tar.gz
cobbler-2cfbb55145b68cc9c91f2511d4f766a1cb96b1fd.tar.xz
cobbler-2cfbb55145b68cc9c91f2511d4f766a1cb96b1fd.zip
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.
Diffstat (limited to 'cobbler/action_litesync.py')
-rw-r--r--cobbler/action_litesync.py6
1 files changed, 6 insertions, 0 deletions
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