summaryrefslogtreecommitdiffstats
path: root/cobbler/item_system.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-21 18:22:20 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-21 18:22:20 -0400
commit6b8331279384f6376269ded47b88b6fd64cfa288 (patch)
tree005a538f1d2a751e21015a4597088e787aee39bd /cobbler/item_system.py
parentc85f740ddeb5518d8486237aa4448b7abc981787 (diff)
downloadthird_party-cobbler-6b8331279384f6376269ded47b88b6fd64cfa288.tar.gz
third_party-cobbler-6b8331279384f6376269ded47b88b6fd64cfa288.tar.xz
third_party-cobbler-6b8331279384f6376269ded47b88b6fd64cfa288.zip
default is still PXEable
Diffstat (limited to 'cobbler/item_system.py')
-rw-r--r--cobbler/item_system.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cobbler/item_system.py b/cobbler/item_system.py
index 479430e..d6ddb02 100644
--- a/cobbler/item_system.py
+++ b/cobbler/item_system.py
@@ -142,6 +142,8 @@ class System(item.Item):
only record. Actually Itanium goes beyond all this and needs the IP all of the time
though this is enforced elsewhere (action_sync.py).
"""
+ if self.name == "default":
+ return True
mac = self.get_mac_address()
ip = self.get_ip_address()
if mac is None and ip is None: