Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 160613 Details for
Bug 249708
[RHEL5 U1] virt-install needs option to turn off auto-boot after install
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Patch to add noreboot flag
virtinst-0.103.0-noreboot.patch (text/x-patch), 1.47 KB, created by
Hugh Brock
on 2007-08-03 13:51:50 UTC
(
hide
)
Description:
Patch to add noreboot flag
Filename:
MIME Type:
Creator:
Hugh Brock
Created:
2007-08-03 13:51:50 UTC
Size:
1.47 KB
patch
obsolete
>diff -ruN virtinst-0.103.0.orig/virt-install virtinst-0.103.0/virt-install >--- virtinst-0.103.0.orig/virt-install 2007-08-03 09:35:18.000000000 -0400 >+++ virtinst-0.103.0/virt-install 2007-08-03 09:39:13.000000000 -0400 >@@ -393,7 +393,7 @@ > # Misc options > parser.add_option("-d", "--debug", action="store_true", dest="debug", > help="Print debugging information") >- >+ parser.add_option("", "--noreboot", action="store_true", dest="noreboot", help="Disables the automatic rebooting when the installation is complete.") > > (options,args) = parser.parse_args() > return options >@@ -609,9 +609,13 @@ > print "Domain installation still in progress. You can reconnect " > print "to the console to complete the installation process." > sys.exit(0) >- print "Guest installation complete... restarting guest." >- dom.create() >- guest.connect_console(conscb) >+ if options.noreboot: >+ print ("Guest installation complete... you can restart your domain\n" >+ "by running 'virsh start %s'") %(guest.name,) >+ else: >+ print "Guest installation complete... restarting guest." >+ dom.create() >+ guest.connect_console(conscb) > else: > print ("Domain installation does not appear to have been\n" > "successful. If it was, you can restart your domain\n"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 249708
: 160613