summaryrefslogtreecommitdiffstats
path: root/cobbler/action_sync.py
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler/action_sync.py')
-rw-r--r--cobbler/action_sync.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py
index ae65ccc..117f078 100644
--- a/cobbler/action_sync.py
+++ b/cobbler/action_sync.py
@@ -158,7 +158,13 @@ class BootSync:
systxt = ""
if mode == "isc":
- systxt = "\nhost label%d {\n" % counter
+ # the label the entry after the hostname if possible
+ host = system.hostname
+ if host is not None and host != "":
+ systxt = "\nhost %s {\n" % host
+ else:
+ systxt = "\nhost generic%d {\n" % counter
+
profile = system.get_conceptual_parent()
distro = profile.get_conceptual_parent()
if distro.arch == "ia64":