vagrant-libvirt 0.10.2 → 0.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/vagrant-libvirt/action/start_domain.rb +20 -14
- data/lib/vagrant-libvirt/config.rb +3 -1
- data/lib/vagrant-libvirt/driver.rb +2 -2
- data/lib/vagrant-libvirt/version +1 -1
- data/spec/unit/action/start_domain_spec/default_with_different_formatting.xml +37 -0
- data/spec/unit/action/start_domain_spec.rb +25 -0
- data/spec/unit/config_spec.rb +25 -0
- metadata +99 -83
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85294c7015420a6e696381e22f64562b72d18ad88e131b80ee4b4496afca3ca0
|
4
|
+
data.tar.gz: ddaf423ba6a7e76c723048fcedd463f921b0cd613a8ac0982bd7496494cc9f2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 446f775fe8ff2c61f06980692e6f311d9f79a78e0a077c6237c854173e4e33aae622cf3f8a0a1240cfd059ea806106eb1d3f846fde332aed6fbd773155813b1c
|
7
|
+
data.tar.gz: f6e0f39e8c1e1b13ce852cdc00a91cbb3eefd1fe22907b97bce58f11c427658762af8e65440e501b0611d560d4167a531ae26c5d5757c56d70e9b0fee926789a
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Vagrant Libvirt Provider
|
2
2
|
|
3
|
-

|
4
4
|
|
5
5
|
[](https://gitter.im/vagrant-libvirt/vagrant-libvirt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
6
6
|
[](https://github.com/vagrant-libvirt/vagrant-libvirt/actions/workflows/unit-tests.yml)
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require 'diffy'
|
4
3
|
require 'log4r'
|
4
|
+
|
5
|
+
require 'compare-xml'
|
5
6
|
require 'rexml/document'
|
6
7
|
|
7
8
|
module VagrantPlugins
|
@@ -425,24 +426,29 @@ module VagrantPlugins
|
|
425
426
|
end
|
426
427
|
|
427
428
|
begin
|
428
|
-
|
429
|
+
# need to check whether the updated XML contains all the changes requested
|
429
430
|
|
430
|
-
# This normalizes the attribute order to be consistent across both XML docs to
|
431
|
-
# for subsequent comparison by diffy
|
432
|
-
|
433
|
-
|
434
|
-
|
431
|
+
# This normalizes the attribute order to be consistent across both XML docs to
|
432
|
+
# eliminate differences for subsequent comparison by diffy
|
433
|
+
applied_xml_descr = REXML::Document.new(libvirt_domain.xml_desc(1))
|
434
|
+
applied_xml = String.new
|
435
|
+
applied_xml_descr.write(applied_xml)
|
436
|
+
|
437
|
+
proposed = Nokogiri::XML(new_xml, &:noblanks)
|
438
|
+
applied = Nokogiri::XML(applied_xml, &:noblanks)
|
435
439
|
|
436
|
-
|
440
|
+
if CompareXML.equivalent?(proposed, applied, { force_children: true })
|
441
|
+
require 'diffy'
|
437
442
|
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
443
|
+
# pretty print the XML as even though there can be additional changes,
|
444
|
+
# the output with diffy appears to be clearer
|
445
|
+
pretty_proposed = StringIO.new
|
446
|
+
pretty_applied = StringIO.new
|
447
|
+
proposed.write_xml_to(pretty_proposed, indent: 2)
|
448
|
+
applied.write_xml_to(pretty_applied, indent: 2)
|
442
449
|
|
443
|
-
|
450
|
+
diff = Diffy::Diff.new(pretty_proposed.string, pretty_applied.string, :context => 3).to_s(:text)
|
444
451
|
|
445
|
-
unless diff.empty?
|
446
452
|
error_msg = "Libvirt failed to fully update the domain with the specified XML. Result differs from requested:\n" +
|
447
453
|
"--- requested\n+++ result\n#{diff}\n" +
|
448
454
|
"Typically this means there is a bug in the XML being sent, please log an issue"
|
@@ -782,7 +782,7 @@ module VagrantPlugins
|
|
782
782
|
finalize_id_ssh_key_file
|
783
783
|
|
784
784
|
uri += '+ssh://'
|
785
|
-
uri += "#{@username}@" if @username && @username != UNSET_VALUE
|
785
|
+
uri += "#{URI.encode_www_form_component(@username)}@" if @username && @username != UNSET_VALUE
|
786
786
|
|
787
787
|
uri += (@host && @host != UNSET_VALUE ? @host : 'localhost')
|
788
788
|
|
@@ -1089,6 +1089,8 @@ module VagrantPlugins
|
|
1089
1089
|
|
1090
1090
|
def merge(other)
|
1091
1091
|
super.tap do |result|
|
1092
|
+
result.boot_order = other.boot_order != [] ? other.boot_order : boot_order
|
1093
|
+
|
1092
1094
|
c = disks.dup
|
1093
1095
|
c += other.disks
|
1094
1096
|
result.disks = c
|
@@ -202,11 +202,11 @@ module VagrantPlugins
|
|
202
202
|
end
|
203
203
|
|
204
204
|
def list_host_devices
|
205
|
-
|
205
|
+
connection.client.list_all_interfaces
|
206
206
|
end
|
207
207
|
|
208
208
|
def list_networks
|
209
|
-
|
209
|
+
connection.client.list_all_networks
|
210
210
|
end
|
211
211
|
|
212
212
|
private
|
data/lib/vagrant-libvirt/version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.10.
|
1
|
+
0.10.5
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<domain xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0' type=''>
|
2
|
+
<name/>
|
3
|
+
<title/>
|
4
|
+
<description/>
|
5
|
+
<uuid/>
|
6
|
+
<memory/>
|
7
|
+
<vcpu>1</vcpu>
|
8
|
+
<cpu check="none" mode="host-model">
|
9
|
+
|
10
|
+
|
11
|
+
</cpu>
|
12
|
+
<os>
|
13
|
+
<type>hvm</type>
|
14
|
+
<kernel/>
|
15
|
+
<initrd/>
|
16
|
+
<cmdline/>
|
17
|
+
</os>
|
18
|
+
<features>
|
19
|
+
<acpi/>
|
20
|
+
<apic/>
|
21
|
+
<pae/>
|
22
|
+
</features>
|
23
|
+
<clock offset='utc'/>
|
24
|
+
<devices>
|
25
|
+
<serial type='pty'>
|
26
|
+
<target port='0'/>
|
27
|
+
</serial>
|
28
|
+
<console type='pty'>
|
29
|
+
<target port='0'/>
|
30
|
+
</console>
|
31
|
+
<input bus='ps2' type='mouse'/>
|
32
|
+
<graphics autoport='yes' keymap='en-us' listen='127.0.0.1' port='-1' type='vnc'/>
|
33
|
+
<video>
|
34
|
+
<model heads='1' type='cirrus' vram='16384'/>
|
35
|
+
</video>
|
36
|
+
</devices>
|
37
|
+
</domain>
|
@@ -50,6 +50,31 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
50
50
|
expect(subject.call(env)).to be_nil
|
51
51
|
end
|
52
52
|
|
53
|
+
context 'when xml is formatted differently' do
|
54
|
+
let(:test_file) { 'default_with_different_formatting.xml' }
|
55
|
+
let(:updated_domain_xml) {
|
56
|
+
new_xml = domain_xml.dup
|
57
|
+
new_xml.gsub!(/<cpu .*<\/cpu>/m, '<cpu check="none" mode="host-passthrough"/>')
|
58
|
+
new_xml
|
59
|
+
}
|
60
|
+
let(:vagrantfile_providerconfig) do
|
61
|
+
<<-EOF
|
62
|
+
libvirt.cpu_mode = "host-passthrough"
|
63
|
+
EOF
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'should correctly detect the domain was updated' do
|
67
|
+
expect(ui).to_not receive(:error)
|
68
|
+
expect(libvirt_domain).to receive(:autostart=)
|
69
|
+
expect(connection).to receive(:define_domain).and_return(libvirt_domain)
|
70
|
+
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
71
|
+
expect(domain).to receive(:start)
|
72
|
+
|
73
|
+
expect(subject.call(env)).to be_nil
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
77
|
+
|
53
78
|
context 'when any setting changed' do
|
54
79
|
let(:vagrantfile_providerconfig) do
|
55
80
|
<<-EOF
|
data/spec/unit/config_spec.rb
CHANGED
@@ -197,6 +197,13 @@ describe VagrantPlugins::ProviderLibvirt::Config do
|
|
197
197
|
:env => {'LIBVIRT_DEFAULT_URI' => 'qemu:///custom'},
|
198
198
|
}
|
199
199
|
],
|
200
|
+
[ # when username explicitly set with @ symbol for domains
|
201
|
+
{:username => 'my_user@my_domain', :host => 'remote'},
|
202
|
+
{:uri => %r{qemu://remote/(system|session)}, :username => 'my_user@my_domain'},
|
203
|
+
{
|
204
|
+
:env => {'LIBVIRT_DEFAULT_URI' => 'qemu:///custom'},
|
205
|
+
}
|
206
|
+
],
|
200
207
|
[ # when username explicitly set with host but without ssh
|
201
208
|
{:username => 'my_user', :host => 'remote'},
|
202
209
|
{:uri => %r{qemu://remote/(system|session)}, :username => 'my_user'},
|
@@ -862,5 +869,23 @@ describe VagrantPlugins::ProviderLibvirt::Config do
|
|
862
869
|
)
|
863
870
|
end
|
864
871
|
end
|
872
|
+
|
873
|
+
context 'boot_order' do
|
874
|
+
it 'should merge' do
|
875
|
+
one.boot 'network'
|
876
|
+
|
877
|
+
subject.finalize!
|
878
|
+
expect(subject.boot_order).to eq(['network'])
|
879
|
+
end
|
880
|
+
|
881
|
+
it 'should have last definition win' do
|
882
|
+
one.boot 'network'
|
883
|
+
two.boot 'hd'
|
884
|
+
two.boot 'cdrom'
|
885
|
+
|
886
|
+
subject.finalize!
|
887
|
+
expect(subject.boot_order).to eq(['hd', 'cdrom'])
|
888
|
+
end
|
889
|
+
end
|
865
890
|
end
|
866
891
|
end
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-libvirt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Stanek
|
8
8
|
- Dima Vasilets
|
9
9
|
- Brian Pitts
|
10
10
|
- Darragh Bailey
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2022-08-
|
14
|
+
date: 2022-08-29 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fog-libvirt
|
@@ -55,6 +55,20 @@ dependencies:
|
|
55
55
|
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: '0'
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: compare-xml
|
60
|
+
requirement: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
type: :runtime
|
66
|
+
prerelease: false
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
58
72
|
- !ruby/object:Gem::Dependency
|
59
73
|
name: diffy
|
60
74
|
requirement: !ruby/object:Gem::Requirement
|
@@ -290,6 +304,7 @@ files:
|
|
290
304
|
- spec/unit/action/start_domain_spec/default.xml
|
291
305
|
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
292
306
|
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
307
|
+
- spec/unit/action/start_domain_spec/default_with_different_formatting.xml
|
293
308
|
- spec/unit/action/start_domain_spec/existing.xml
|
294
309
|
- spec/unit/action/start_domain_spec/existing_added_nvram.xml
|
295
310
|
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
@@ -319,7 +334,7 @@ licenses:
|
|
319
334
|
- MIT
|
320
335
|
metadata:
|
321
336
|
source_code_uri: https://github.com/vagrant-libvirt/vagrant-libvirt
|
322
|
-
post_install_message:
|
337
|
+
post_install_message:
|
323
338
|
rdoc_options: []
|
324
339
|
require_paths:
|
325
340
|
- lib
|
@@ -335,96 +350,97 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
335
350
|
version: '0'
|
336
351
|
requirements: []
|
337
352
|
rubygems_version: 3.0.9
|
338
|
-
signing_key:
|
353
|
+
signing_key:
|
339
354
|
specification_version: 4
|
340
355
|
summary: libvirt provider for Vagrant.
|
341
356
|
test_files:
|
342
|
-
- spec/acceptance/package_domain_spec.rb
|
343
|
-
- spec/acceptance/provider_settings_spec.rb
|
344
|
-
- spec/acceptance/two_disks_spec.rb
|
345
|
-
- spec/acceptance/additional_storage_spec.rb
|
346
|
-
- spec/acceptance/support-skeletons/package_complex/Vagrantfile.testbox
|
347
|
-
- spec/acceptance/support-skeletons/package_complex/scripts/sysprep.sh
|
348
|
-
- spec/acceptance/support-skeletons/package_simple/Vagrantfile.testbox
|
349
|
-
- spec/acceptance/simple_vm_provision_via_shell_spec.rb
|
350
|
-
- spec/acceptance/snapshots_spec.rb
|
351
|
-
- spec/acceptance/use_qemu_agent_for_connectivity_spec.rb
|
352
|
-
- spec/support/matchers/have_file_content.rb
|
353
|
-
- spec/support/binding_proc.rb
|
354
|
-
- spec/support/acceptance/context.rb
|
355
|
-
- spec/support/acceptance/configuration.rb
|
356
|
-
- spec/support/acceptance/isolated_environment.rb
|
357
|
-
- spec/support/environment_helper.rb
|
358
|
-
- spec/support/libvirt_context.rb
|
359
|
-
- spec/support/temporary_dir.rb
|
360
|
-
- spec/support/libvirt_acceptance_context.rb
|
361
|
-
- spec/support/sharedcontext.rb
|
362
357
|
- spec/unit/config_spec.rb
|
363
358
|
- spec/unit/action_spec.rb
|
364
|
-
- spec/unit/
|
365
|
-
- spec/unit/
|
366
|
-
- spec/unit/
|
367
|
-
- spec/unit/
|
368
|
-
- spec/unit/
|
369
|
-
- spec/unit/
|
370
|
-
- spec/unit/
|
371
|
-
- spec/unit/
|
372
|
-
- spec/unit/
|
373
|
-
- spec/unit/
|
374
|
-
- spec/unit/templates/domain_scsi_bus_storage.xml
|
375
|
-
- spec/unit/templates/domain_scsi_device_storage.xml
|
376
|
-
- spec/unit/templates/tpm/version_1.2.xml
|
377
|
-
- spec/unit/templates/tpm/version_2.0.xml
|
378
|
-
- spec/unit/util/byte_number_spec.rb
|
379
|
-
- spec/unit/util/resolvers_spec.rb
|
380
|
-
- spec/unit/action/package_domain_spec.rb
|
381
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_1.xml
|
382
|
-
- spec/unit/action/create_domain_volume_spec/one_disk_in_storage.xml
|
383
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_2.xml
|
384
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
385
|
-
- spec/unit/action/destroy_domain_spec.rb
|
386
|
-
- spec/unit/action/set_name_of_domain_spec.rb
|
387
|
-
- spec/unit/action/remove_libvirt_image_spec.rb
|
388
|
-
- spec/unit/action/halt_domain_spec.rb
|
389
|
-
- spec/unit/action/create_domain_spec/additional_disks_domain.xml
|
390
|
-
- spec/unit/action/create_domain_spec/default_domain.xml
|
391
|
-
- spec/unit/action/create_domain_spec/sysinfo.xml
|
392
|
-
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
393
|
-
- spec/unit/action/create_domain_spec/custom_disk_settings.xml
|
394
|
-
- spec/unit/action/create_domain_spec/sysinfo_only_required.xml
|
395
|
-
- spec/unit/action/create_domain_spec/two_disk_settings.xml
|
396
|
-
- spec/unit/action/create_domain_volume_spec.rb
|
397
|
-
- spec/unit/action/resolve_disk_settings_spec/default_domain.xml
|
398
|
-
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box.xml
|
359
|
+
- spec/unit/action/forward_ports_spec.rb
|
360
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks.xml
|
361
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks.xml
|
362
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks_no_aliases.xml
|
363
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_disks.xml
|
364
|
+
- spec/unit/action/destroy_domain_spec/cdrom_domain.xml
|
365
|
+
- spec/unit/action/destroy_domain_spec/additional_disks_domain.xml
|
366
|
+
- spec/unit/action/cleanup_on_failure_spec.rb
|
367
|
+
- spec/unit/action/create_domain_spec.rb
|
368
|
+
- spec/unit/action/resolve_disk_settings_spec/default_system_storage_pool.xml
|
399
369
|
- spec/unit/action/resolve_disk_settings_spec/default_no_aliases.xml
|
400
|
-
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box_additional_storage.xml
|
401
370
|
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box_additional_and_custom_no_aliases.xml
|
402
|
-
- spec/unit/action/resolve_disk_settings_spec/
|
403
|
-
- spec/unit/action/
|
404
|
-
- spec/unit/action/
|
405
|
-
- spec/unit/action/
|
406
|
-
- spec/unit/action/clean_machine_folder_spec.rb
|
407
|
-
- spec/unit/action/resolve_disk_settings_spec.rb
|
408
|
-
- spec/unit/action/start_domain_spec.rb
|
409
|
-
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
410
|
-
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
411
|
-
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
412
|
-
- spec/unit/action/start_domain_spec/default.xml
|
413
|
-
- spec/unit/action/start_domain_spec/clock_timer_rtc_tsc.xml
|
371
|
+
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box_additional_storage.xml
|
372
|
+
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box.xml
|
373
|
+
- spec/unit/action/resolve_disk_settings_spec/default_domain.xml
|
374
|
+
- spec/unit/action/start_domain_spec/existing.xml
|
414
375
|
- spec/unit/action/start_domain_spec/nvram_domain_removed.xml
|
376
|
+
- spec/unit/action/start_domain_spec/default.xml
|
377
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
378
|
+
- spec/unit/action/start_domain_spec/default_with_different_formatting.xml
|
415
379
|
- spec/unit/action/start_domain_spec/nvram_domain_other_setting.xml
|
380
|
+
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
416
381
|
- spec/unit/action/start_domain_spec/clock_timer_removed.xml
|
382
|
+
- spec/unit/action/start_domain_spec/clock_timer_rtc_tsc.xml
|
383
|
+
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
384
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
417
385
|
- spec/unit/action/start_domain_spec/existing_added_nvram.xml
|
418
|
-
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
419
|
-
- spec/unit/action/start_domain_spec/existing.xml
|
420
|
-
- spec/unit/action/destroy_domain_spec/additional_disks_domain.xml
|
421
|
-
- spec/unit/action/destroy_domain_spec/box_multiple_disks.xml
|
422
|
-
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks_no_aliases.xml
|
423
|
-
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_disks.xml
|
424
|
-
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks.xml
|
425
|
-
- spec/unit/action/destroy_domain_spec/cdrom_domain.xml
|
426
|
-
- spec/unit/action/create_domain_spec.rb
|
427
386
|
- spec/unit/action/prepare_nfs_settings_spec.rb
|
387
|
+
- spec/unit/action/package_domain_spec.rb
|
388
|
+
- spec/unit/action/handle_box_image_spec.rb
|
389
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
390
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_1.xml
|
391
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_2.xml
|
392
|
+
- spec/unit/action/create_domain_volume_spec/one_disk_in_storage.xml
|
393
|
+
- spec/unit/action/start_domain_spec.rb
|
394
|
+
- spec/unit/action/clean_machine_folder_spec.rb
|
395
|
+
- spec/unit/action/destroy_domain_spec.rb
|
396
|
+
- spec/unit/action/wait_till_up_spec.rb
|
397
|
+
- spec/unit/action/create_domain_volume_spec.rb
|
398
|
+
- spec/unit/action/halt_domain_spec.rb
|
399
|
+
- spec/unit/action/set_name_of_domain_spec.rb
|
400
|
+
- spec/unit/action/resolve_disk_settings_spec.rb
|
401
|
+
- spec/unit/action/remove_libvirt_image_spec.rb
|
428
402
|
- spec/unit/action/shutdown_domain_spec.rb
|
429
|
-
- spec/unit/action/
|
403
|
+
- spec/unit/action/create_domain_spec/custom_disk_settings.xml
|
404
|
+
- spec/unit/action/create_domain_spec/two_disk_settings.xml
|
405
|
+
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
406
|
+
- spec/unit/action/create_domain_spec/sysinfo_only_required.xml
|
407
|
+
- spec/unit/action/create_domain_spec/default_domain.xml
|
408
|
+
- spec/unit/action/create_domain_spec/sysinfo.xml
|
409
|
+
- spec/unit/action/create_domain_spec/additional_disks_domain.xml
|
410
|
+
- spec/unit/templates/domain_scsi_multiple_controllers_storage.xml
|
411
|
+
- spec/unit/templates/domain_scsi_bus_storage.xml
|
412
|
+
- spec/unit/templates/domain_scsi_device_storage.xml
|
413
|
+
- spec/unit/templates/domain_all_settings.xml
|
414
|
+
- spec/unit/templates/domain_spec.rb
|
415
|
+
- spec/unit/templates/tpm/version_2.0.xml
|
416
|
+
- spec/unit/templates/tpm/version_1.2.xml
|
417
|
+
- spec/unit/templates/domain_cpu_mode_passthrough.xml
|
418
|
+
- spec/unit/templates/domain_defaults.xml
|
419
|
+
- spec/unit/templates/domain_custom_cpu_model.xml
|
420
|
+
- spec/unit/cap/synced_folder_virtiofs_spec.rb
|
421
|
+
- spec/unit/cap/synced_folder_9p_spec.rb
|
422
|
+
- spec/unit/plugin_spec.rb
|
423
|
+
- spec/unit/driver_spec.rb
|
424
|
+
- spec/unit/util/byte_number_spec.rb
|
425
|
+
- spec/unit/util/resolvers_spec.rb
|
426
|
+
- spec/support/temporary_dir.rb
|
427
|
+
- spec/support/environment_helper.rb
|
428
|
+
- spec/support/sharedcontext.rb
|
429
|
+
- spec/support/matchers/have_file_content.rb
|
430
|
+
- spec/support/libvirt_acceptance_context.rb
|
431
|
+
- spec/support/acceptance/configuration.rb
|
432
|
+
- spec/support/acceptance/isolated_environment.rb
|
433
|
+
- spec/support/acceptance/context.rb
|
434
|
+
- spec/support/libvirt_context.rb
|
435
|
+
- spec/support/binding_proc.rb
|
436
|
+
- spec/acceptance/provider_settings_spec.rb
|
437
|
+
- spec/acceptance/two_disks_spec.rb
|
438
|
+
- spec/acceptance/package_domain_spec.rb
|
439
|
+
- spec/acceptance/snapshots_spec.rb
|
440
|
+
- spec/acceptance/additional_storage_spec.rb
|
441
|
+
- spec/acceptance/simple_vm_provision_via_shell_spec.rb
|
442
|
+
- spec/acceptance/use_qemu_agent_for_connectivity_spec.rb
|
443
|
+
- spec/acceptance/support-skeletons/package_simple/Vagrantfile.testbox
|
444
|
+
- spec/acceptance/support-skeletons/package_complex/Vagrantfile.testbox
|
445
|
+
- spec/acceptance/support-skeletons/package_complex/scripts/sysprep.sh
|
430
446
|
- spec/spec_helper.rb
|