summaryrefslogtreecommitdiffstats
path: root/cobbler
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-04-18 11:44:57 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-04-18 11:44:57 -0400
commitad17059740c03a4e503867d4c39bc3647502287c (patch)
tree361e9a7f5032764b5dc3f9ebe84a0019538c961e /cobbler
parent7b33e5feeddd51f08d3b5377c0bacf8ca23a0915 (diff)
downloadthird_party-cobbler-ad17059740c03a4e503867d4c39bc3647502287c.tar.gz
third_party-cobbler-ad17059740c03a4e503867d4c39bc3647502287c.tar.xz
third_party-cobbler-ad17059740c03a4e503867d4c39bc3647502287c.zip
kssendmac does not make this information available at the time of this wget
Diffstat (limited to 'cobbler')
-rw-r--r--cobbler/remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cobbler/remote.py b/cobbler/remote.py
index b606bbc..0cbaf22 100644
--- a/cobbler/remote.py
+++ b/cobbler/remote.py
@@ -230,7 +230,7 @@ class CobblerXMLRPCInterface:
systems.add(obj,save=True,with_triggers=False,with_sync=False,quick_pxe_update=True)
return True
- def run_install_triggers(self,mode,objtype,name,mac,ip,token=None):
+ def run_install_triggers(self,mode,objtype,name,ip,token=None):
"""
This is a feature used to run the pre/post install triggers.
@@ -249,7 +249,7 @@ class CobblerXMLRPCInterface:
# time if reinstalling all of a cluster all at once.
# we can do that at "cobbler check" time.
- utils.run_triggers(None, "/var/lib/cobbler/triggers/install/%s/*" % mode, additional=[objtype,name,mac,ip])
+ utils.run_triggers(None, "/var/lib/cobbler/triggers/install/%s/*" % mode, additional=[objtype,name,ip])
return True