Skip to content

Instantly share code, notes, and snippets.

@j-griffith
Created July 18, 2018 18:51
Show Gist options
  • Select an option

  • Save j-griffith/430d02769e3e54ed208837edd14464a4 to your computer and use it in GitHub Desktop.

Select an option

Save j-griffith/430d02769e3e54ed208837edd14464a4 to your computer and use it in GitHub Desktop.
<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