lib/vagrant-libvirt/templates/domain.xml.erb in vagrant-libvirt-0.1.2 vs lib/vagrant-libvirt/templates/domain.xml.erb in vagrant-libvirt-0.2.1

- old
+ new

@@ -1,7 +1,9 @@ <domain type='<%= @domain_type %>' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'> <name><%= @name %></name> + <title><%= @title %></title> + <description><%= @description %></description> <uuid><%= @uuid %></uuid> <memory><%= @memory_size %></memory> <vcpu<% if @cpuset %> cpuset='<%= @cpuset %>'<% end %>><%= @cpus %></vcpu> @@ -124,9 +126,12 @@ <% if d[:shareable] %> <shareable/> <% end %> <% if d[:serial] %> <serial><%= d[:serial] %></serial> + <% end %> + <% if d[:wwn] %> + <wwn><%= d[:wwn] %></wwn> <% end %> <%# this will get auto generated by Libvirt <address type='pci' domain='0x0000' bus='0x00' slot='???' function='0x0'/> -%> </disk>