vagrant-parallels 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ff32a59a5a53f6225bc9595f05ecc24583ffefab4cebd77ad5cbb8901c8725d
4
- data.tar.gz: 33664d070c0831774d66bfd3c3da5b5a1d3c20456521c543f01aec4c0a9a8911
3
+ metadata.gz: d138c790174855049184943ea5dada1b980eee3755f88f5e20059a2851fb2aa9
4
+ data.tar.gz: 277e1c323a916c085f4b45fed9ede685b1587246ace3e703a89b33038b59147f
5
5
  SHA512:
6
- metadata.gz: fec7982dd9ad7948f5830fae0a13beeada091a0464076df096ead3e8ec03da22f1c4f6f15d7a3af997e8ebd3ea294bb039d326a3ada5b9e16d242acd3fcce76f
7
- data.tar.gz: fae1a0a7b2e7b414dcba9110309fa41ecfef8244616a6c34d9b9c2ac790a89db648f8fb78bd022f48810e4755bbe15c15cac69721571a0f33c5cecc2965c178a
6
+ metadata.gz: ee07c96b1a45d301d37b2c633e71ac176ca4859cf40d92cfd772d5549892a1edb64a74897270d9819f2ea0fe3f9a2a3916a447a65b60fd084100e06bcf86ef45
7
+ data.tar.gz: b963b62e1d1b86e89eb7d78c088881a9ae399fb529928fdb030ba921cd0d32f9b660529e160b1bb8f229d077fcc2a71df4cb90518f4a067e7fe2269447ed96dd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 2.2.2 (June 23, 2021)
2
+ BUG FIXES:
3
+ - Fixed shared folder mount on the VM reboot
4
+ [[GH-391](https://github.com/Parallels/vagrant-parallels/pull/391)]
5
+
1
6
  ## 2.2.1 (April 14, 2021)
2
7
  BUG FIXES:
3
8
  - Fixed the compatibility with Vagrant 2.2.15
data/README.md CHANGED
@@ -8,10 +8,7 @@ allowing to manage [Parallels Desktop](https://www.parallels.com/products/deskto
8
8
  virtual machines on macOS hosts.
9
9
 
10
10
  ### Requirements
11
- - [Vagrant v1.8](https://www.vagrantup.com) or higher
12
- (_there are known issues with Vagrant v1.9.5
13
- [[GH-297](https://github.com/Parallels/vagrant-parallels/issues/297#issuecomment-304458691)]
14
- and v1.9.6 [[GH-301]](https://github.com/Parallels/vagrant-parallels/issues/301)_)
11
+ - [Vagrant v1.9.7](https://www.vagrantup.com) or higher
15
12
  - [Parallels Desktop 11 for Mac](https://www.parallels.com/products/desktop/) or higher
16
13
 
17
14
  *Note:* Only **Pro** and **Business** editions of **Parallels Desktop for Mac**
@@ -22,6 +22,7 @@ module VagrantPlugins
22
22
 
23
23
  mount_options << "uid=#{mount_uid}"
24
24
  mount_options << "gid=#{mount_gid}"
25
+ mount_options << "_netdev"
25
26
  mount_options = mount_options.join(',')
26
27
  return mount_options, mount_uid, mount_gid
27
28
  end
@@ -9,8 +9,8 @@ module VagrantPlugins
9
9
  machine.provider_config.functional_psf
10
10
  end
11
11
 
12
- def enable(machine, folders, _opts)
13
- # Export the shared folders to the VM
12
+ def prepare(machine, folders, _opts)
13
+ # Setup shared folder definitions in the VM config.
14
14
  defs = []
15
15
  folders.each do |id, data|
16
16
  hostpath = data[:hostpath]
@@ -25,7 +25,9 @@ module VagrantPlugins
25
25
  end
26
26
 
27
27
  driver(machine).share_folders(defs)
28
+ end
28
29
 
30
+ def enable(machine, folders, _opts)
29
31
  # short guestpaths first, so we don't step on ourselves
30
32
  folders = folders.sort_by do |id, data|
31
33
  if data[:guestpath]
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Parallels
3
- VERSION = '2.2.1'
3
+ VERSION = '2.2.2'
4
4
  end
5
5
  end
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.2.1
4
+ version: 2.2.2
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: 2021-04-14 00:00:00.000000000 Z
12
+ date: 2021-06-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri