vagrant-vbox-snapshot 0.0.9 → 0.0.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f488cd5378ea2f34c78e798f2250173f52eff89
4
- data.tar.gz: f84316bae8559c4bf9e7199dd8297c48c902f651
3
+ metadata.gz: 04963a551426c1e9edb5a8e1a37f7c823c699a40
4
+ data.tar.gz: b5e2778151389215d7df6df426d3066364d307a8
5
5
  SHA512:
6
- metadata.gz: 2855af7a621f98d64ccb90f6429e4b51443122546266eda10c9dd1e4cf11fe3c1422eb63f0405faa5f00d3f2fe62349653782fe206ab360789d482653f8541f4
7
- data.tar.gz: 2992fd7b350892153690dea545bcb0e1968d6a76897ac6ad64ca9538a4c2dadd7faebf697337b8f21f3abc8a15c963cea5bb1c2538dad52af5296d6759e13a30
6
+ metadata.gz: a113b429a36d7f508d1ab8beb4d022e6ede0f24bc7f2ae64bde6e0cb8d6fde232452ceb9602a7425742adc560c9df7c85780a8caa0ae901a039bd460df0f57f3
7
+ data.tar.gz: 539f3193f5e8f6da31eb45238749cc3aedf63101f981e9b40039a6ec46a98f2856f79e0471175b2c1c2db2d812f920fad3aecb60a9dff0cdfb9b5fa46455863e
@@ -1,3 +1,9 @@
1
+ ## [0.0.9](https://github.com/dergachev/vagrant-vbox-snapshot/compare/v0.0.8...v0.0.9) (July 3, 2015)
2
+
3
+ IMPROVEMENTS:
4
+
5
+ - vagrant snapshot back and go no longer fails if the VM is in "saved" state [#33](https://github.com/dergachev/vagrant-vbox-snapshot/pull/33)
6
+
1
7
  ## [0.0.8](https://github.com/dergachev/vagrant-vbox-snapshot/compare/v0.0.7...v0.0.8) (October 10, 2014)
2
8
 
3
9
  IMPROVEMENTS:
@@ -4,7 +4,6 @@
4
4
 
5
5
  require_relative 'lib/vagrant-vbox-snapshot.rb'
6
6
 
7
-
8
7
  Vagrant.configure("2") do |config|
9
8
 
10
9
  TEST_MULTI_VM = false
@@ -1,3 +1,2 @@
1
1
  require_relative 'vagrant-vbox-snapshot/version.rb'
2
2
  require_relative 'vagrant-vbox-snapshot/plugin.rb'
3
-
@@ -22,7 +22,7 @@ module VagrantPlugins
22
22
  with_target_vms(argv, single_target: true) do |machine|
23
23
  check_runnable_on(machine)
24
24
 
25
- if machine.state.id != :poweroff and machine.state.id != :saved
25
+ if machine.state.id != :poweroff and machine.state.id != :saved and machine.state.id != :aborted
26
26
  machine.provider.driver.execute("controlvm", machine.id, "poweroff")
27
27
  end
28
28
 
@@ -59,7 +59,7 @@ module VagrantPlugins
59
59
 
60
60
  before_restore(machine)
61
61
 
62
- if machine.state.id != :poweroff and machine.state.id != :saved
62
+ if machine.state.id != :poweroff and machine.state.id != :saved and machine.state.id != :aborted
63
63
  @env.ui.info("Powering off machine #{vm_id}")
64
64
  machine.provider.driver.execute("controlvm", machine.id, "poweroff")
65
65
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VBoxSnapshot
3
- VERSION = "0.0.9"
3
+ VERSION = "0.0.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vbox-snapshot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Dergachev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-03 00:00:00.000000000 Z
11
+ date: 2015-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler