summaryrefslogtreecommitdiffstats
path: root/cobbler/cobbler.py
diff options
context:
space:
mode:
authorDavid Lutterkort <dlutter@redhat.com>2006-10-19 17:35:43 -0700
committerJim Meyering <jim@meyering.net>2006-10-19 17:35:43 -0700
commit8cdc8d9c48e55846adf9c85f9b9d57c0b2483d72 (patch)
treead58bcd3a7332f9d0bbcb91ea1be80bb0ed80a79 /cobbler/cobbler.py
parent574308b7f0604636978cb5e954060330dc418341 (diff)
downloadthird_party-cobbler-8cdc8d9c48e55846adf9c85f9b9d57c0b2483d72.tar.gz
third_party-cobbler-8cdc8d9c48e55846adf9c85f9b9d57c0b2483d72.tar.xz
third_party-cobbler-8cdc8d9c48e55846adf9c85f9b9d57c0b2483d72.zip
Enable --pxe-address command line option
Diffstat (limited to 'cobbler/cobbler.py')
-rwxr-xr-xcobbler/cobbler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cobbler/cobbler.py b/cobbler/cobbler.py
index 7ff3fcd..aea7f67 100755
--- a/cobbler/cobbler.py
+++ b/cobbler/cobbler.py
@@ -192,6 +192,7 @@ class BootCLI:
'--profile' : lambda(a) : sys.set_profile(a),
'--kopts' : lambda(a) : sys.set_kernel_options(a),
'--ksmeta' : lambda(a) : sys.set_ksmeta(a)
+ '--pxe-address' : lambda(a) : sys.set_pxe_address(a)
}
on_ok = lambda: self.api.systems().add(sys)
return self.apply_args(args,commands,on_ok)