vagrant-skytap 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/.project +11 -0
  3. data/CHANGELOG.md +4 -0
  4. data/LICENSE +2 -1
  5. data/README.md +7 -0
  6. data/lib/vagrant-skytap/action/action_helpers.rb +35 -0
  7. data/lib/vagrant-skytap/action/add_vm_to_environment.rb +22 -0
  8. data/lib/vagrant-skytap/action/clear_forwarded_ports.rb +22 -0
  9. data/lib/vagrant-skytap/action/compose_environment.rb +22 -0
  10. data/lib/vagrant-skytap/action/create_environment.rb +22 -0
  11. data/lib/vagrant-skytap/action/delete_environment.rb +22 -0
  12. data/lib/vagrant-skytap/action/delete_vm.rb +26 -1
  13. data/lib/vagrant-skytap/action/existence_check.rb +26 -1
  14. data/lib/vagrant-skytap/action/fetch_environment.rb +22 -0
  15. data/lib/vagrant-skytap/action/forward_ports.rb +22 -0
  16. data/lib/vagrant-skytap/action/initial_state.rb +22 -0
  17. data/lib/vagrant-skytap/action/initialize_api_client.rb +22 -0
  18. data/lib/vagrant-skytap/action/is_parallelized.rb +22 -0
  19. data/lib/vagrant-skytap/action/is_running.rb +22 -0
  20. data/lib/vagrant-skytap/action/is_stopped.rb +22 -0
  21. data/lib/vagrant-skytap/action/is_suspended.rb +22 -0
  22. data/lib/vagrant-skytap/action/message_already_created.rb +22 -0
  23. data/lib/vagrant-skytap/action/message_already_running.rb +22 -0
  24. data/lib/vagrant-skytap/action/message_environment_url.rb +22 -0
  25. data/lib/vagrant-skytap/action/message_not_created.rb +22 -0
  26. data/lib/vagrant-skytap/action/message_resuming.rb +22 -0
  27. data/lib/vagrant-skytap/action/message_will_not_destroy.rb +22 -0
  28. data/lib/vagrant-skytap/action/mixin_machine_index.rb +22 -0
  29. data/lib/vagrant-skytap/action/prepare_forwarded_port_collision_params.rb +22 -0
  30. data/lib/vagrant-skytap/action/prepare_nfs_settings.rb +22 -0
  31. data/lib/vagrant-skytap/action/prepare_nfs_valid_ids.rb +22 -0
  32. data/lib/vagrant-skytap/action/read_ssh_info.rb +22 -0
  33. data/lib/vagrant-skytap/action/read_state.rb +27 -2
  34. data/lib/vagrant-skytap/action/run_environment.rb +26 -1
  35. data/lib/vagrant-skytap/action/run_vm.rb +25 -1
  36. data/lib/vagrant-skytap/action/set_hostname.rb +26 -1
  37. data/lib/vagrant-skytap/action/set_up_vm.rb +22 -0
  38. data/lib/vagrant-skytap/action/stop_environment.rb +22 -0
  39. data/lib/vagrant-skytap/action/stop_vm.rb +26 -1
  40. data/lib/vagrant-skytap/action/store_extra_data.rb +22 -0
  41. data/lib/vagrant-skytap/action/suspend_environment.rb +22 -0
  42. data/lib/vagrant-skytap/action/suspend_vm.rb +26 -1
  43. data/lib/vagrant-skytap/action/timed_provision.rb +22 -0
  44. data/lib/vagrant-skytap/action/update_hardware.rb +29 -4
  45. data/lib/vagrant-skytap/action/wait_for_communicator.rb +22 -0
  46. data/lib/vagrant-skytap/action.rb +22 -0
  47. data/lib/vagrant-skytap/api/busyable.rb +22 -0
  48. data/lib/vagrant-skytap/api/client.rb +22 -0
  49. data/lib/vagrant-skytap/api/credentials.rb +22 -0
  50. data/lib/vagrant-skytap/api/environment.rb +22 -5
  51. data/lib/vagrant-skytap/api/interface.rb +22 -0
  52. data/lib/vagrant-skytap/api/network.rb +22 -0
  53. data/lib/vagrant-skytap/api/public_ip.rb +22 -0
  54. data/lib/vagrant-skytap/api/publish_set.rb +22 -0
  55. data/lib/vagrant-skytap/api/published_service.rb +22 -0
  56. data/lib/vagrant-skytap/api/resource.rb +22 -0
  57. data/lib/vagrant-skytap/api/runstate_operations.rb +22 -0
  58. data/lib/vagrant-skytap/api/specified_attributes.rb +22 -0
  59. data/lib/vagrant-skytap/api/vm.rb +22 -18
  60. data/lib/vagrant-skytap/api/vpn.rb +22 -0
  61. data/lib/vagrant-skytap/api/vpn_attachment.rb +22 -0
  62. data/lib/vagrant-skytap/cap/public_address.rb +22 -0
  63. data/lib/vagrant-skytap/command/helpers.rb +22 -0
  64. data/lib/vagrant-skytap/command/publish_url/create.rb +22 -0
  65. data/lib/vagrant-skytap/command/publish_url/delete.rb +22 -0
  66. data/lib/vagrant-skytap/command/publish_url/root.rb +22 -0
  67. data/lib/vagrant-skytap/command/publish_url/show.rb +22 -0
  68. data/lib/vagrant-skytap/command/up.rb +22 -0
  69. data/lib/vagrant-skytap/config.rb +22 -0
  70. data/lib/vagrant-skytap/core_ext/object/blank.rb +22 -0
  71. data/lib/vagrant-skytap/core_ext/object/tap.rb +22 -0
  72. data/lib/vagrant-skytap/core_ext/try.rb +22 -0
  73. data/lib/vagrant-skytap/environment_properties.rb +22 -0
  74. data/lib/vagrant-skytap/errors.rb +22 -0
  75. data/lib/vagrant-skytap/hosts/bsd/cap/ssh_tunnel.rb +22 -0
  76. data/lib/vagrant-skytap/hosts/common/cap/ssh_tunnel.rb +22 -0
  77. data/lib/vagrant-skytap/hosts/linux/cap/ssh_tunnel.rb +22 -0
  78. data/lib/vagrant-skytap/hosts/windows/cap/ssh_tunnel.rb +22 -0
  79. data/lib/vagrant-skytap/model/forwarded_port.rb +22 -0
  80. data/lib/vagrant-skytap/plugin.rb +22 -0
  81. data/lib/vagrant-skytap/properties.rb +22 -0
  82. data/lib/vagrant-skytap/provider.rb +22 -0
  83. data/lib/vagrant-skytap/setup_helper.rb +25 -1
  84. data/lib/vagrant-skytap/util/compile_forwarded_ports.rb +22 -0
  85. data/lib/vagrant-skytap/util/ip_address.rb +22 -0
  86. data/lib/vagrant-skytap/util/subnet.rb +22 -0
  87. data/lib/vagrant-skytap/util/timer.rb +22 -0
  88. data/lib/vagrant-skytap/version.rb +23 -1
  89. data/lib/vagrant-skytap/vm_properties.rb +22 -0
  90. data/lib/vagrant-skytap.rb +22 -0
  91. data/spec/acceptance/base.rb +22 -0
  92. data/spec/acceptance/provider/halt_spec.rb +22 -0
  93. data/spec/acceptance/provider/up_spec.rb +22 -0
  94. data/spec/acceptance/shared/context_skytap.rb +22 -0
  95. data/spec/spec_helper.rb +22 -0
  96. data/spec/support/isolated_environment.rb +22 -0
  97. data/spec/unit/actions/compose_environment_spec.rb +22 -0
  98. data/spec/unit/actions/update_hardware_spec.rb +75 -0
  99. data/spec/unit/base.rb +22 -0
  100. data/spec/unit/config_spec.rb +22 -0
  101. data/spec/unit/environment_spec.rb +22 -0
  102. data/spec/unit/forwarded_port_spec.rb +22 -0
  103. data/spec/unit/hosts/common/cap/ssh_tunnel_spec.rb +22 -0
  104. data/spec/unit/prepare_collision_params_spec.rb +22 -0
  105. data/spec/unit/publish_set_spec.rb +22 -0
  106. data/spec/unit/setup_helper_spec.rb +22 -0
  107. data/spec/unit/support/dummy_communicator.rb +22 -0
  108. data/spec/unit/support/dummy_provider.rb +22 -0
  109. data/spec/unit/support/isolated_environment.rb +22 -0
  110. data/spec/unit/support/shared/action_synced_folders_context.rb +22 -0
  111. data/spec/unit/support/shared/base_context.rb +22 -0
  112. data/spec/unit/support/shared/capability_helpers_context.rb +22 -0
  113. data/spec/unit/support/shared/plugin_command_context.rb +22 -0
  114. data/spec/unit/support/shared/rest_api_context.rb +22 -0
  115. data/spec/unit/support/shared/skytap_context.rb +22 -0
  116. data/spec/unit/vm_spec.rb +22 -0
  117. data/vagrant-skytap.gemspec +25 -3
  118. data/vagrant-spec.config.rb +22 -0
  119. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d2727c03689c62c012fa747457f85b6a24f667e5
4
- data.tar.gz: 8d0a62aade129cb4532728e647b40129d8c44239
3
+ metadata.gz: 0e80355442d175c31c247c1e440e82e19311bb28
4
+ data.tar.gz: 86662fe7894e137edeef1252af62059c98422a48
5
5
  SHA512:
6
- metadata.gz: 5e11895205c8662c702d30d714bb3e89cdbf34f92671633720068855ce7eebe9305a13c437318e9f6b479e737d273dc91dc273950de745cd819d4e28fdbb9d8e
7
- data.tar.gz: 962b89d9673a20560d54b942d068a64130c34de2e9434eeebe07017c9519189e31679ffc65f0e1fd2f830104a587dbee3c020473862a3cdbce2f48c649bc09ca
6
+ metadata.gz: 187ee028f6abb5fcc5b15124ca72fe98fe3902d82216243d4e0ff72291460c7b7c507f9544bb2c7dbc529aa80ea4f24deb147700d028af9afc9f55c56127a4a1
7
+ data.tar.gz: 5afbffe84d4f5f3c4873941d5e8dae1eb7a717c8b3bdf112f4d4e8c8b1b37ac95d95813562eef08c22e788f1aa877e6d8a74b64a8256a5029ed8d15f05914246
data/.project ADDED
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <projectDescription>
3
+ <name>vagrant_skytap</name>
4
+ <comment></comment>
5
+ <projects>
6
+ </projects>
7
+ <buildSpec>
8
+ </buildSpec>
9
+ <natures>
10
+ </natures>
11
+ </projectDescription>
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.2.4 (February 3, 2016)
2
+
3
+ * Fix bug which caused updating hardware to take effect for the first VM only.
4
+
1
5
  # 0.2.3 (January 28, 2016)
2
6
 
3
7
  * Optimizations to REST calls in `vagrant up`.
data/LICENSE CHANGED
@@ -1,5 +1,6 @@
1
+ Copyright (c) 2014-2016 Skytap, Inc.
2
+
1
3
  The MIT License (MIT)
2
- Copyright (c) 2015 Skytap, Inc.
3
4
 
4
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
6
 
data/README.md CHANGED
@@ -211,3 +211,10 @@ To enable logging while troubleshooting, see [https://docs.vagrantup.com/v2/othe
211
211
  * Once a VM has been created, it is not possible to change its connection method (i.e., connect using a different VPN). This is the case whether the VPN is specified in the Vagrantfile with the `vpn_url` setting, or selected interactively.
212
212
  * Installing the Skytap provider using the `--install-provider` flag is not supported.
213
213
  * The `vagrant port` command is currently not supported.
214
+
215
+
216
+ ## Changelog
217
+ See [CHANGELOG.md](CHANGELOG.md)
218
+
219
+ ## License
220
+ MIT; see [LICENSE](LICENSE) for details.
@@ -0,0 +1,35 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
23
+ module VagrantPlugins
24
+ module Skytap
25
+ module Action
26
+ module ActionHelpers
27
+ def current_vm(env)
28
+ if env[:environment] && env[:machine]
29
+ env[:environment].get_vms_by_id([env[:machine].id]).first
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require 'log4r'
2
24
  require 'vagrant-skytap/api/vm'
3
25
 
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  module VagrantPlugins
2
24
  module Skytap
3
25
  module Action
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require 'log4r'
2
24
  require 'vagrant-skytap/api/environment'
3
25
  require 'vagrant-skytap/api/vm'
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require 'log4r'
2
24
  require 'json'
3
25
 
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  module VagrantPlugins
2
24
  module Skytap
3
25
  module Action
@@ -1,10 +1,35 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require 'log4r'
2
24
  require 'vagrant-skytap/api/vm'
25
+ require_relative 'action_helpers'
3
26
 
4
27
  module VagrantPlugins
5
28
  module Skytap
6
29
  module Action
7
30
  class DeleteVm
31
+ include ActionHelpers
32
+
8
33
  # Deletes Skytap VM and removes it from the global machine index.
9
34
  def initialize(app, env)
10
35
  @app = app
@@ -13,7 +38,7 @@ module VagrantPlugins
13
38
 
14
39
  def call(env)
15
40
  environment = env[:environment]
16
- if vm = environment.current_vm
41
+ if vm = current_vm(env)
17
42
  vm.delete
18
43
  environment.wait_until_ready
19
44
  end
@@ -1,4 +1,27 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require 'vagrant-skytap/api/vm'
24
+ require_relative 'action_helpers'
2
25
 
3
26
  module VagrantPlugins
4
27
  module Skytap
@@ -6,6 +29,8 @@ module VagrantPlugins
6
29
  # This can be used with "Call" built-in to check if the environment
7
30
  # is created and branch in the middleware.
8
31
  class ExistenceCheck
32
+ include ActionHelpers
33
+
9
34
  def initialize(app, env)
10
35
  @app = app
11
36
  @logger = Log4r::Logger.new("vagrant_skytap::action::existence_check")
@@ -17,7 +42,7 @@ module VagrantPlugins
17
42
  :missing_environment
18
43
  elsif environment.vms.count == 0
19
44
  :no_vms
20
- elsif !environment.current_vm
45
+ elsif !current_vm(env)
21
46
  # Could be confusing. The *current* vm is not present. This response also implies that there are other vms.
22
47
  :missing_vm
23
48
  elsif environment.vms.count == 1
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require 'log4r'
2
24
  require 'json'
3
25
  require 'vagrant-skytap/api/environment'
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require 'vagrant-skytap/util/compile_forwarded_ports'
2
24
 
3
25
  module VagrantPlugins
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  module VagrantPlugins
2
24
  module Skytap
3
25
  module Action
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  require "log4r"
2
24
  require "vagrant-skytap/api/client"
3
25
 
@@ -1,3 +1,25 @@
1
+ # Copyright (c) 2014-2016 Skytap, Inc.
2
+ #
3
+ # The MIT License (MIT)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ # DEALINGS IN THE SOFTWARE.
22
+
1
23
  module VagrantPlugins
2
24
  module Skytap
3
25
  module Action