vagrant-parallels 2.1.0 → 2.2.3
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/CHANGELOG.md +24 -0
- data/README.md +1 -4
- data/lib/vagrant-parallels/action/forward_ports.rb +19 -17
- data/lib/vagrant-parallels/action/network.rb +72 -75
- data/lib/vagrant-parallels/cap/mount_options.rb +50 -0
- data/lib/vagrant-parallels/driver/base.rb +76 -96
- data/lib/vagrant-parallels/errors.rb +4 -4
- data/lib/vagrant-parallels/guest_cap/linux/mount_parallels_shared_folder.rb +31 -64
- data/lib/vagrant-parallels/model/forwarded_port.rb +14 -2
- data/lib/vagrant-parallels/plugin.rb +15 -0
- data/lib/vagrant-parallels/synced_folder.rb +13 -21
- data/lib/vagrant-parallels/util/compile_forwarded_ports.rb +19 -17
- data/lib/vagrant-parallels/util/unix_mount_helpers.rb +121 -0
- data/lib/vagrant-parallels/version.rb +1 -1
- data/locales/en.yml +13 -8
- metadata +4 -2
data/locales/en.yml
CHANGED
@@ -45,14 +45,6 @@ en:
|
|
45
45
|
disk is inconsistent, please remove it from the VM configuration.
|
46
46
|
|
47
47
|
Disk image path: %{path}
|
48
|
-
linux_mount_failed: |-
|
49
|
-
Failed to mount folders in Linux guest. This is usually because
|
50
|
-
the "prl_fs" file system is not available. Please verify that
|
51
|
-
Parallels Tools are properly installed in the guest and
|
52
|
-
can work properly. If so, the VM reboot can solve a problem.
|
53
|
-
The command attempted was:
|
54
|
-
|
55
|
-
%{command}
|
56
48
|
linux_prl_fs_invalid_options: |-
|
57
49
|
Failed to mount folders in Linux guest. You've specified mount options
|
58
50
|
which are not supported by "prl_fs" file system.
|
@@ -81,6 +73,19 @@ en:
|
|
81
73
|
%{output}
|
82
74
|
|
83
75
|
This is an internal error that should be reported as a bug.
|
76
|
+
parallels_mount_failed: |-
|
77
|
+
Vagrant was unable to mount Parallels Desktop shared folders. This is usually
|
78
|
+
because the filesystem "prl_fs" is not available. This filesystem is
|
79
|
+
made available via the Parallels Tools and kernel module.
|
80
|
+
Please verify that these guest tools are properly installed in the
|
81
|
+
guest. This is not a bug in Vagrant and is usually caused by a faulty
|
82
|
+
Vagrant box. For context, the command attempted was:
|
83
|
+
|
84
|
+
%{command}
|
85
|
+
|
86
|
+
The error output from the command was:
|
87
|
+
|
88
|
+
%{output}
|
84
89
|
parallels_no_room_for_high_level_network: |-
|
85
90
|
There is no available slots on the Parallels Desktop VM for the configured
|
86
91
|
high-level network interfaces. "private_network" and "public_network"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-parallels
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mikhail Zholobov
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-07-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|
@@ -112,6 +112,7 @@ files:
|
|
112
112
|
- lib/vagrant-parallels/action/snapshot_save.rb
|
113
113
|
- lib/vagrant-parallels/action/suspend.rb
|
114
114
|
- lib/vagrant-parallels/cap.rb
|
115
|
+
- lib/vagrant-parallels/cap/mount_options.rb
|
115
116
|
- lib/vagrant-parallels/config.rb
|
116
117
|
- lib/vagrant-parallels/driver/base.rb
|
117
118
|
- lib/vagrant-parallels/driver/meta.rb
|
@@ -128,6 +129,7 @@ files:
|
|
128
129
|
- lib/vagrant-parallels/provider.rb
|
129
130
|
- lib/vagrant-parallels/synced_folder.rb
|
130
131
|
- lib/vagrant-parallels/util/compile_forwarded_ports.rb
|
132
|
+
- lib/vagrant-parallels/util/unix_mount_helpers.rb
|
131
133
|
- lib/vagrant-parallels/version.rb
|
132
134
|
- locales/en.yml
|
133
135
|
homepage: https://github.com/Parallels/vagrant-parallels
|