Created
July 18, 2018 18:51
-
-
Save j-griffith/430d02769e3e54ed208837edd14464a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <disk type='network' device='cdrom'> | |
| <driver name='qemu' type='raw'/> | |
| <source protocol="http" name="/alpine/v3.8/releases/x86_64/alpine-standard-3.8.0-x86_64.iso"> | |
| <host name="http://dl-cdn.alpinelinux.org" port="80"/> | |
| </source> | |
| <target dev='hde' bus='ide' tray='closed'/> | |
| <readonly/> | |
| </disk> | |
| # Fails update, see: https://bugzilla.redhat.com/show_bug.cgi?id=1353296 | |
| # Following example works | |
| <disk type='network' device='cdrom'> | |
| <driver name='qemu' type='raw'/> | |
| <source protocol='http' name='/alpine/v3.8/releases/x86_64/alpine-standard-3.8.0-x86_64.iso'> | |
| <host name='dl-cdn.alpinelinux.org' port='80'/> | |
| </source> | |
| <target dev='sda' bus='sata'/> | |
| <readonly/> | |
| <address type='drive' controller='0' bus='0' target='0' unit='0'/> | |
| </disk> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment