File virt-auto-boot.diff of Package cobbler
diff --git a/koan/qcreate.py b/koan/qcreate.py
index beab3fa..1116b19 100755
--- a/koan/qcreate.py
+++ b/koan/qcreate.py
@@ -158,6 +158,7 @@ def start_install(name=None,
guest.set_name(name)
guest.set_memory(ram)
guest.set_vcpus(vcpus)
+ guest.set_autostart(virt_auto_boot)
# for KVM, we actually can't disable this, since it's the only
# console it has other than SDL
guest.set_graphics("vnc")
diff --git a/koan/xencreate.py b/koan/xencreate.py
index b86c2ff..2228d69 100755
--- a/koan/xencreate.py
+++ b/koan/xencreate.py
@@ -113,6 +113,7 @@ def start_install(name=None,
guest.set_name(name)
guest.set_memory(ram)
guest.set_vcpus(vcpus)
+ guest.set_autostart(virt_auto_boot)
if not no_gfx:
guest.set_graphics("vnc")