vagrant-libvirt 0.5.1 → 0.5.2
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 +6 -5
- data/lib/vagrant-libvirt/action/handle_box_image.rb +1 -0
- data/lib/vagrant-libvirt/version +1 -1
- metadata +32 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 318bb5e0023b717064b450108e5a8974386562b88c814cbe22e6ff98c7aebb3a
|
4
|
+
data.tar.gz: 784a85de569e533693e0d4478c013574fddb9dd9c11ba8c1fbae19d3d667d099
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 133fb557db9fdfe87c5b81b2f0875b436ec60c71ac9d86199c02b23f44024d720331b8615507a3c8394c6b3172ca11959677e30bc283d1a75baccdbb444c0e84
|
7
|
+
data.tar.gz: '0873ca30d8422dc71070e69652a8f8edea1d85a0bd1708ce0ad8a6b0c5df66a0726dfc636a34d3ff690d5e0346fefab9cec5437d01ff05b3228797dfc4564b9a'
|
data/README.md
CHANGED
@@ -183,6 +183,7 @@ vagrant-libvirt. This depends on your distro. An overview:
|
|
183
183
|
apt-get build-dep vagrant ruby-libvirt
|
184
184
|
apt-get install qemu libvirt-daemon-system libvirt-clients ebtables dnsmasq-base
|
185
185
|
apt-get install libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev
|
186
|
+
apt-get install libguestfs-tools
|
186
187
|
```
|
187
188
|
|
188
189
|
* Ubuntu 18.04, Debian 8 and older:
|
@@ -190,23 +191,24 @@ apt-get install libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev
|
|
190
191
|
apt-get build-dep vagrant ruby-libvirt
|
191
192
|
apt-get install qemu libvirt-bin ebtables dnsmasq-base
|
192
193
|
apt-get install libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev
|
194
|
+
apt-get install libguestfs-tools
|
193
195
|
```
|
194
196
|
|
195
197
|
(It is possible some users will already have libraries from the third line installed, but this is the way to make it work OOTB.)
|
196
198
|
|
197
199
|
* CentOS 6, 7, Fedora 21:
|
198
200
|
```shell
|
199
|
-
yum install qemu libvirt libvirt-devel ruby-devel gcc qemu-kvm
|
201
|
+
yum install qemu libvirt libvirt-devel ruby-devel gcc qemu-kvm libguestfs-tools
|
200
202
|
```
|
201
203
|
|
202
204
|
* Fedora 22 and up:
|
203
205
|
```shell
|
204
|
-
dnf install -y gcc libvirt libvirt-devel libxml2-devel make ruby-devel
|
206
|
+
dnf install -y gcc libvirt libvirt-devel libxml2-devel make ruby-devel libguestfs-tools
|
205
207
|
```
|
206
208
|
|
207
209
|
* OpenSUSE leap 15.1:
|
208
210
|
```shell
|
209
|
-
zypper install qemu libvirt libvirt-devel ruby-devel gcc qemu-kvm
|
211
|
+
zypper install qemu libvirt libvirt-devel ruby-devel gcc qemu-kvm libguestfs
|
210
212
|
```
|
211
213
|
|
212
214
|
* Arch Linux: please read the related [ArchWiki](https://wiki.archlinux.org/index.php/Vagrant#vagrant-libvirt) page.
|
@@ -241,8 +243,7 @@ On Ubuntu, Debian, make sure you are running all three of the `apt` commands abo
|
|
241
243
|
On RedHat, Centos, Fedora, ...
|
242
244
|
|
243
245
|
```shell
|
244
|
-
$ sudo dnf install libxslt-devel libxml2-devel libvirt-devel
|
245
|
-
libguestfs-tools-c ruby-devel gcc
|
246
|
+
$ sudo dnf install libxslt-devel libxml2-devel libvirt-devel ruby-devel gcc
|
246
247
|
```
|
247
248
|
|
248
249
|
On Arch Linux it is recommended to follow [steps from ArchWiki](https://wiki.archlinux.org/index.php/Vagrant#vagrant-libvirt).
|
data/lib/vagrant-libvirt/version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.2
|
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.5.
|
4
|
+
version: 0.5.2
|
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: 2021-
|
14
|
+
date: 2021-06-07 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rspec-core
|
@@ -266,7 +266,7 @@ homepage: https://github.com/vagrant-libvirt/vagrant-libvirt
|
|
266
266
|
licenses:
|
267
267
|
- MIT
|
268
268
|
metadata: {}
|
269
|
-
post_install_message:
|
269
|
+
post_install_message:
|
270
270
|
rdoc_options: []
|
271
271
|
require_paths:
|
272
272
|
- lib
|
@@ -281,43 +281,44 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
281
281
|
- !ruby/object:Gem::Version
|
282
282
|
version: '0'
|
283
283
|
requirements: []
|
284
|
-
|
285
|
-
|
284
|
+
rubyforge_project:
|
285
|
+
rubygems_version: 2.7.11
|
286
|
+
signing_key:
|
286
287
|
specification_version: 4
|
287
288
|
summary: libvirt provider for Vagrant.
|
288
289
|
test_files:
|
289
|
-
- spec/
|
290
|
-
- spec/support/binding_proc.rb
|
291
|
-
- spec/support/sharedcontext.rb
|
292
|
-
- spec/support/matchers/have_file_content.rb
|
293
|
-
- spec/support/environment_helper.rb
|
294
|
-
- spec/unit/templates/domain_all_settings.xml
|
295
|
-
- spec/unit/templates/domain_custom_cpu_model.xml
|
296
|
-
- spec/unit/templates/domain_defaults.xml
|
297
|
-
- spec/unit/templates/domain_spec.rb
|
298
|
-
- spec/unit/templates/tpm/version_1.2.xml
|
299
|
-
- spec/unit/templates/tpm/version_2.0.xml
|
300
|
-
- spec/unit/action/create_domain_spec/additional_disks_domain.xml
|
301
|
-
- spec/unit/action/create_domain_spec/default_domain.xml
|
302
|
-
- spec/unit/action/create_domain_spec/default_system_storage_pool.xml
|
303
|
-
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
290
|
+
- spec/unit/action/start_domain_spec.rb
|
304
291
|
- spec/unit/action/create_domain_spec.rb
|
305
|
-
- spec/unit/action/wait_till_up_spec.rb
|
306
292
|
- spec/unit/action/forward_ports_spec.rb
|
307
|
-
- spec/unit/action/
|
308
|
-
- spec/unit/action/halt_domain_spec.rb
|
309
|
-
- spec/unit/action/start_domain_spec.rb
|
293
|
+
- spec/unit/action/wait_till_up_spec.rb
|
310
294
|
- spec/unit/action/clean_machine_folder_spec.rb
|
311
|
-
- spec/unit/action/create_domain_volume_spec.rb
|
312
|
-
- spec/unit/action/set_name_of_domain_spec.rb
|
313
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_1.xml
|
314
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
315
295
|
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_2.xml
|
316
296
|
- spec/unit/action/create_domain_volume_spec/one_disk_in_storage.xml
|
317
|
-
- spec/unit/action/
|
297
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_1.xml
|
298
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
299
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
318
300
|
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
319
301
|
- spec/unit/action/start_domain_spec/default.xml
|
320
|
-
- spec/unit/action/start_domain_spec/
|
302
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
303
|
+
- spec/unit/action/destroy_domain_spec.rb
|
304
|
+
- spec/unit/action/create_domain_spec/default_system_storage_pool.xml
|
305
|
+
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
306
|
+
- spec/unit/action/create_domain_spec/additional_disks_domain.xml
|
307
|
+
- spec/unit/action/create_domain_spec/default_domain.xml
|
321
308
|
- spec/unit/action/handle_box_image_spec.rb
|
309
|
+
- spec/unit/action/set_name_of_domain_spec.rb
|
310
|
+
- spec/unit/action/halt_domain_spec.rb
|
311
|
+
- spec/unit/action/create_domain_volume_spec.rb
|
322
312
|
- spec/unit/config_spec.rb
|
313
|
+
- spec/unit/templates/domain_defaults.xml
|
314
|
+
- spec/unit/templates/domain_all_settings.xml
|
315
|
+
- spec/unit/templates/domain_spec.rb
|
316
|
+
- spec/unit/templates/tpm/version_1.2.xml
|
317
|
+
- spec/unit/templates/tpm/version_2.0.xml
|
318
|
+
- spec/unit/templates/domain_custom_cpu_model.xml
|
319
|
+
- spec/support/libvirt_context.rb
|
320
|
+
- spec/support/matchers/have_file_content.rb
|
321
|
+
- spec/support/environment_helper.rb
|
322
|
+
- spec/support/binding_proc.rb
|
323
|
+
- spec/support/sharedcontext.rb
|
323
324
|
- spec/spec_helper.rb
|