diff --git a/lib/fog/libvirt/models/compute/server.rb b/lib/fog/libvirt/models/compute/server.rb index 81fb526..32caaea 100644 --- a/lib/fog/libvirt/models/compute/server.rb +++ b/lib/fog/libvirt/models/compute/server.rb @@ -357,9 +357,9 @@ def to_xml xml.disk(:type => "file", :device => "cdrom") do xml.driver(:name => "qemu", :type => "raw") xml.source(:file => "#{iso_dir}/#{iso_file}") - xml.target(:dev => "hdc", :bus => "ide") + xml.target(:dev => "sda", :bus => "scsi") xml.readonly - xml.address(:type => "drive", :controller => 0, :bus => 1, :unit => 0) + xml.address(:type => "drive", :controller => 0, :bus => 0, :unit => 0) end end