vagrant-unbundled 2.1.4.0 → 2.2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (276) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +58 -1
  3. data/Gemfile.lock +9 -5
  4. data/contrib/bash/completion.sh +16 -2
  5. data/contrib/sudoers/osx +1 -1
  6. data/lib/vagrant/environment.rb +16 -21
  7. data/lib/vagrant/errors.rb +28 -0
  8. data/lib/vagrant/machine.rb +1 -1
  9. data/lib/vagrant/plugin/manager.rb +35 -1
  10. data/lib/vagrant/plugin/v2/trigger.rb +23 -0
  11. data/lib/vagrant/util/curl_helper.rb +96 -0
  12. data/lib/vagrant/util/downloader.rb +2 -79
  13. data/lib/vagrant/util/guest_inspection.rb +18 -5
  14. data/lib/vagrant/util/platform.rb +33 -8
  15. data/lib/vagrant/util/uploader.rb +103 -0
  16. data/lib/vagrant/vagrantfile.rb +5 -1
  17. data/lib/vagrant.rb +39 -13
  18. data/plugins/commands/cloud/auth/login.rb +90 -0
  19. data/plugins/commands/cloud/auth/logout.rb +42 -0
  20. data/plugins/commands/cloud/auth/plugin.rb +20 -0
  21. data/plugins/commands/cloud/auth/root.rb +73 -0
  22. data/plugins/commands/cloud/auth/whoami.rb +62 -0
  23. data/plugins/commands/cloud/box/create.rb +75 -0
  24. data/plugins/commands/cloud/box/delete.rb +65 -0
  25. data/plugins/commands/cloud/box/plugin.rb +19 -0
  26. data/plugins/commands/cloud/box/root.rb +77 -0
  27. data/plugins/commands/cloud/box/show.rb +74 -0
  28. data/plugins/commands/cloud/box/update.rb +71 -0
  29. data/plugins/commands/cloud/client/client.rb +264 -0
  30. data/plugins/commands/cloud/errors.rb +28 -0
  31. data/plugins/commands/cloud/list.rb +52 -0
  32. data/plugins/commands/cloud/locales/en.yml +159 -0
  33. data/plugins/commands/cloud/plugin.rb +30 -0
  34. data/plugins/commands/cloud/provider/create.rb +73 -0
  35. data/plugins/commands/cloud/provider/delete.rb +70 -0
  36. data/plugins/commands/cloud/provider/plugin.rb +19 -0
  37. data/plugins/commands/cloud/provider/root.rb +77 -0
  38. data/plugins/commands/cloud/provider/update.rb +73 -0
  39. data/plugins/commands/cloud/provider/upload.rb +75 -0
  40. data/plugins/commands/cloud/publish.rb +165 -0
  41. data/plugins/commands/cloud/root.rb +104 -0
  42. data/plugins/commands/cloud/search.rb +83 -0
  43. data/plugins/commands/cloud/util.rb +206 -0
  44. data/plugins/commands/cloud/version/create.rb +69 -0
  45. data/plugins/commands/cloud/version/delete.rb +68 -0
  46. data/plugins/commands/cloud/version/plugin.rb +19 -0
  47. data/plugins/commands/cloud/version/release.rb +69 -0
  48. data/plugins/commands/cloud/version/revoke.rb +69 -0
  49. data/plugins/commands/cloud/version/root.rb +81 -0
  50. data/plugins/commands/cloud/version/update.rb +69 -0
  51. data/plugins/commands/init/command.rb +1 -1
  52. data/plugins/commands/login/plugin.rb +4 -3
  53. data/plugins/commands/powershell/command.rb +3 -0
  54. data/plugins/commands/powershell/plugin.rb +1 -0
  55. data/plugins/commands/upload/command.rb +236 -0
  56. data/plugins/commands/upload/plugin.rb +17 -0
  57. data/plugins/commands/winrm/command.rb +69 -0
  58. data/plugins/commands/winrm/plugin.rb +17 -0
  59. data/plugins/commands/winrm_config/command.rb +125 -0
  60. data/plugins/commands/winrm_config/plugin.rb +17 -0
  61. data/plugins/guests/bsd/cap/file_system.rb +77 -0
  62. data/plugins/guests/bsd/plugin.rb +15 -0
  63. data/plugins/guests/linux/cap/file_system.rb +79 -0
  64. data/plugins/guests/linux/cap/network_interfaces.rb +13 -2
  65. data/plugins/guests/linux/plugin.rb +15 -0
  66. data/plugins/guests/redhat/cap/change_host_name.rb +21 -13
  67. data/plugins/guests/solaris/cap/file_system.rb +77 -0
  68. data/plugins/guests/solaris/plugin.rb +15 -0
  69. data/plugins/guests/windows/cap/file_system.rb +65 -0
  70. data/plugins/guests/windows/cap/mount_shared_folder.rb +1 -1
  71. data/plugins/guests/windows/plugin.rb +10 -0
  72. data/plugins/kernel_v2/config/vm.rb +3 -0
  73. data/plugins/kernel_v2/config/vm_trigger.rb +49 -1
  74. data/plugins/providers/docker/action/build.rb +23 -8
  75. data/plugins/providers/docker/action/is_build.rb +1 -1
  76. data/plugins/providers/docker/config.rb +50 -10
  77. data/plugins/providers/hyperv/scripts/configure_vm.ps1 +16 -2
  78. data/plugins/providers/virtualbox/action/match_mac_address.rb +8 -5
  79. data/plugins/providers/virtualbox/driver/version_5_0.rb +1 -0
  80. data/plugins/provisioners/ansible/provisioner/guest.rb +2 -8
  81. data/plugins/provisioners/puppet/provisioner/puppet.rb +4 -2
  82. data/plugins/provisioners/salt/bootstrap-salt.sh +1 -1
  83. data/plugins/provisioners/salt/provisioner.rb +19 -4
  84. data/plugins/synced_folders/rsync/helper.rb +2 -1
  85. data/templates/commands/ssh_config/config.erb +1 -1
  86. data/templates/commands/winrm_config/config.erb +11 -0
  87. data/templates/guests/openbsd/network_static6.erb +1 -0
  88. data/templates/locales/en.yml +60 -1
  89. data/templates/locales/providers_docker.yml +11 -3
  90. data/vagrant.gemspec +3 -1
  91. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-94a9d31ba18b/vagrant-spec.gemspec +1 -1
  92. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/LICENSE +22 -0
  93. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/README.md +67 -0
  94. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/bin/vagrant_cloud +5 -0
  95. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud/account.rb +190 -0
  96. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud/box.rb +185 -0
  97. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud/client.rb +73 -0
  98. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud/errors.rb +25 -0
  99. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud/provider.rb +149 -0
  100. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud/search.rb +31 -0
  101. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud/version.rb +188 -0
  102. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.1/lib/vagrant_cloud.rb +11 -0
  103. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/.gitignore +10 -0
  104. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/.rubocop.yml +38 -0
  105. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/.travis.yml +10 -0
  106. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/Gemfile +2 -0
  107. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/LICENSE +202 -0
  108. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/README.md +276 -0
  109. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/Rakefile +33 -0
  110. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/Vagrantfile +6 -0
  111. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/WinrmAppveyor.psm1 +32 -0
  112. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/appveyor.yml +50 -0
  113. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/bin/rwinrm +90 -0
  114. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/changelog.md +133 -0
  115. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/connection.rb +84 -0
  116. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/connection_opts.rb +90 -0
  117. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/exceptions.rb +88 -0
  118. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/http/response_handler.rb +127 -0
  119. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/http/transport.rb +462 -0
  120. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/http/transport_factory.rb +64 -0
  121. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/output.rb +58 -0
  122. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/create_pipeline.xml.erb +167 -0
  123. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/fragment.rb +68 -0
  124. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/init_runspace_pool.xml.erb +224 -0
  125. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message.rb +128 -0
  126. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/base.rb +47 -0
  127. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/error_record.rb +66 -0
  128. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/pipeline_host_call.rb +30 -0
  129. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/pipeline_output.rb +48 -0
  130. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/pipeline_state.rb +38 -0
  131. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/runspacepool_host_call.rb +30 -0
  132. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/runspacepool_state.rb +37 -0
  133. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data/session_capability.rb +34 -0
  134. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_data.rb +40 -0
  135. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_defragmenter.rb +62 -0
  136. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_factory.rb +74 -0
  137. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/message_fragmenter.rb +58 -0
  138. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/powershell_output_decoder.rb +142 -0
  139. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/receive_response_reader.rb +95 -0
  140. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/session_capability.xml.erb +7 -0
  141. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/psrp/uuid.rb +39 -0
  142. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/shells/base.rb +187 -0
  143. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/shells/cmd.rb +63 -0
  144. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/shells/power_shell.rb +207 -0
  145. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/shells/retryable.rb +44 -0
  146. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/shells/shell_factory.rb +56 -0
  147. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/version.rb +5 -0
  148. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/base.rb +57 -0
  149. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/cleanup_command.rb +60 -0
  150. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/close_shell.rb +49 -0
  151. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/command.rb +100 -0
  152. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/command_output.rb +75 -0
  153. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/command_output_decoder.rb +54 -0
  154. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/configuration.rb +44 -0
  155. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/create_pipeline.rb +64 -0
  156. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/create_shell.rb +115 -0
  157. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/header.rb +213 -0
  158. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/init_runspace_pool.rb +96 -0
  159. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/iso8601_duration.rb +58 -0
  160. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/keep_alive.rb +66 -0
  161. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/receive_response_reader.rb +128 -0
  162. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/send_data.rb +66 -0
  163. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/soap.rb +49 -0
  164. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/wql_pull.rb +54 -0
  165. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/wql_query.rb +98 -0
  166. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm/wsmv/write_stdin.rb +86 -0
  167. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/lib/winrm.rb +37 -0
  168. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/preamble +17 -0
  169. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/auth_timeout_spec.rb +17 -0
  170. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/cmd_spec.rb +130 -0
  171. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/config-example.yml +16 -0
  172. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/issue_59_spec.rb +25 -0
  173. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/powershell_spec.rb +164 -0
  174. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/spec_helper.rb +62 -0
  175. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/transport_spec.rb +98 -0
  176. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/integration/wql_spec.rb +33 -0
  177. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/matchers.rb +59 -0
  178. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/configuration_spec.rb +183 -0
  179. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/connection_spec.rb +37 -0
  180. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/exception_spec.rb +49 -0
  181. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/http/transport_factory_spec.rb +66 -0
  182. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/http/transport_spec.rb +43 -0
  183. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/output_spec.rb +128 -0
  184. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/fragment_spec.rb +60 -0
  185. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/base_spec.rb +11 -0
  186. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/error_record_spec.rb +39 -0
  187. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/pipeline_host_call_spec.rb +23 -0
  188. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/pipeline_output_spec.rb +30 -0
  189. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/pipeline_state_spec.rb +38 -0
  190. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/runspace_pool_host_call_spec.rb +23 -0
  191. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/runspacepool_state_spec.rb +14 -0
  192. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data/session_capability_spec.rb +28 -0
  193. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_data_spec.rb +33 -0
  194. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_defragmenter_spec.rb +45 -0
  195. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/message_fragmenter_spec.rb +103 -0
  196. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/powershell_output_decoder_spec.rb +98 -0
  197. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/psrp_message_spec.rb +73 -0
  198. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/recieve_response_reader_spec.rb +170 -0
  199. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/psrp/uuid_spec.rb +28 -0
  200. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/response_handler_spec.rb +69 -0
  201. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/shells/base_spec.rb +227 -0
  202. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/shells/cmd_spec.rb +75 -0
  203. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/shells/powershell_spec.rb +221 -0
  204. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/spec_helper.rb +46 -0
  205. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/clixml/error_record.xml.erb +84 -0
  206. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/clixml/pipeline_state.xml.erb +88 -0
  207. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_command_output_response.xml.erb +13 -0
  208. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_command_output_response_not_done.xml.erb +10 -0
  209. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_omi_command_output_response.xml.erb +23 -0
  210. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_omi_command_output_response_not_done.xml.erb +24 -0
  211. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_omi_config_response.xml +45 -0
  212. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_omi_powershell_keepalive_response.xml.erb +33 -0
  213. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_powershell_keepalive_response.xml.erb +10 -0
  214. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_powershell_output_response.xml.erb +12 -0
  215. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/get_powershell_output_response_not_done.xml.erb +9 -0
  216. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/open_shell_omi.xml +43 -0
  217. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/open_shell_v1.xml +19 -0
  218. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/open_shell_v2.xml +20 -0
  219. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/soap_fault_omi.xml +31 -0
  220. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/soap_fault_v1.xml +36 -0
  221. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/soap_fault_v2.xml +42 -0
  222. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/stubs/responses/wmi_error_v2.xml +41 -0
  223. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/cleanup_command_spec.rb +20 -0
  224. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/close_shell_spec.rb +15 -0
  225. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/command_output_decoder_spec.rb +35 -0
  226. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/command_output_spec.rb +43 -0
  227. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/command_spec.rb +17 -0
  228. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/configuration_spec.rb +15 -0
  229. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/create_pipeline_spec.rb +30 -0
  230. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/create_shell_spec.rb +39 -0
  231. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/init_runspace_pool_spec.rb +38 -0
  232. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/keep_alive_spec.rb +21 -0
  233. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/receive_response_reader_spec.rb +124 -0
  234. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/send_data_spec.rb +30 -0
  235. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/wql_query_spec.rb +11 -0
  236. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/tests/spec/wsmv/write_stdin_spec.rb +20 -0
  237. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.0/winrm.gemspec +46 -0
  238. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/.gitignore +11 -0
  239. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/.rspec +2 -0
  240. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/.rubocop.yml +17 -0
  241. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/.rubocop_todo.yml +65 -0
  242. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/.travis.yml +10 -0
  243. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/Gemfile +4 -0
  244. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/LICENSE +202 -0
  245. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/README.md +82 -0
  246. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/Rakefile +27 -0
  247. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/VERSION +1 -0
  248. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/Vagrantfile +8 -0
  249. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/appveyor.yml +38 -0
  250. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/bin/rwinrmcp +85 -0
  251. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/changelog.md +74 -0
  252. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/core/file_transporter.rb +566 -0
  253. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/core/tmp_zip.rb +176 -0
  254. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/exceptions.rb +27 -0
  255. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/file_manager.rb +156 -0
  256. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/check_files.ps1.erb +49 -0
  257. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/checksum.ps1.erb +13 -0
  258. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/create_dir.ps1.erb +6 -0
  259. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/delete.ps1.erb +6 -0
  260. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/download.ps1.erb +17 -0
  261. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/exists.ps1.erb +10 -0
  262. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/extract_files.ps1.erb +52 -0
  263. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs/scripts/scripts.rb +31 -0
  264. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/lib/winrm-fs.rb +27 -0
  265. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/spec/config-example.yml +3 -0
  266. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/spec/integration/file_manager_spec.rb +303 -0
  267. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/spec/integration/tmp_zip_spec.rb +26 -0
  268. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/spec/matchers.rb +57 -0
  269. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/spec/spec_helper.rb +66 -0
  270. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/spec/unit/tmp_zip_spec.rb +78 -0
  271. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/winrm-fs.gemspec +36 -0
  272. data/vendor/bundle/ruby/2.5.0/specifications/vagrant_cloud-2.0.1.gemspec +45 -0
  273. data/vendor/bundle/ruby/2.5.0/specifications/winrm-2.3.0.gemspec +73 -0
  274. data/vendor/bundle/ruby/2.5.0/specifications/winrm-fs-1.3.1.gemspec +57 -0
  275. data/version.txt +1 -1
  276. metadata +268 -4
@@ -0,0 +1,159 @@
1
+ en:
2
+ cloud_command:
3
+ publish:
4
+ update_continue: |-
5
+ %{obj} already exists, updating instead...
6
+ box_create:
7
+ Creating a box entry...
8
+ version_create:
9
+ Creating a version entry...
10
+ provider_create:
11
+ Creating a provider entry...
12
+ upload_provider:
13
+ Uploading provider with file %{file}
14
+ release:
15
+ Releasing box...
16
+ complete:
17
+ Complete! Published %{org}/%{box_name}
18
+ confirm:
19
+ warn: |-
20
+ You are about to publish a box on Vagrant Cloud with the following options:
21
+ box: |-
22
+ %{org}/%{box_name}: (v%{version}) for provider '%{provider_name}'
23
+ private: |-
24
+ Private: true
25
+ release: |-
26
+ Automatic Release: true
27
+ box_url: |-
28
+ Remote Box file: %{url}
29
+ box_description: |-
30
+ Box Description: %{description}
31
+ box_short_desc: |-
32
+ Box Short Description: %{short_description}
33
+ version_desc: |-
34
+ Version Description: %{version_description}
35
+ continue: |-
36
+ Do you wish to continue? [y/N]
37
+ box:
38
+ show_filter_empty: |-
39
+ No version matched %{version} for %{org}/%{box_name}
40
+ create_success: |-
41
+ Created box %{org}/%{box_name}
42
+ delete_success: |-
43
+ Deleted box %{org}/%{box_name}
44
+ delete_warn: |-
45
+ This will completely remove %{box} from Vagrant Cloud. This cannot be undone.
46
+ update_success: |-
47
+ Updated box %{org}/%{box_name}
48
+ search:
49
+ no_results: |-
50
+ No results found for `%{query}`
51
+ upload:
52
+ no_url: |-
53
+ No URL was provided to upload the provider
54
+ You will need to run the `vagrant cloud provider upload` command to provide a box
55
+ provider:
56
+ upload: |-
57
+ Uploading box file for '%{org}/%{box_name}' (v%{version}) for provider: '%{provider}'
58
+ upload_success: |-
59
+ Uploaded provider %{provider} on %{org}/%{box_name} for version %{version}
60
+ delete_warn: |-
61
+ This will completely remove provider %{provider} on version %{version} from %{box} on Vagrant Cloud. This cannot be undone.
62
+ create_success: |-
63
+ Created provider %{provider} on %{org}/%{box_name} for version %{version}
64
+ delete_success: |-
65
+ Deleted provider %{provider} on %{org}/%{box_name} for version %{version}
66
+ update_success: |-
67
+ Updated provider %{provider} on %{org}/%{box_name} for version %{version}
68
+ version:
69
+ create_success: |-
70
+ Created version %{version} on %{org}/%{box_name} for version %{version}
71
+ delete_success: |-
72
+ Deleted version %{version} on %{org}/%{box_name}
73
+ release_success: |-
74
+ Released version %{version} on %{org}/%{box_name}
75
+ revoke_success: |-
76
+ Revoked version %{version} on %{org}/%{box_name}
77
+ update_success: |-
78
+ Updated version %{version} on %{org}/%{box_name}
79
+ revoke_warn: |-
80
+ This will revoke version %{version} from %{box} from Vagrant Cloud. This cannot be undone.
81
+ release_warn: |-
82
+ This will release version %{version} from %{box} to Vagrant Cloud and be available to download.
83
+ delete_warn: |-
84
+ This will completely remove version %{version} from %{box} from Vagrant Cloud. This cannot be undone.
85
+ errors:
86
+ search:
87
+ fail: |-
88
+ Could not complete search request
89
+ publish:
90
+ fail: |-
91
+ Failed to create box %{org}/%{box_name}
92
+ box:
93
+ create_fail: |-
94
+ Failed to create box %{org}/%{box_name}
95
+ delete_fail: |-
96
+ Failed to delete box %{org}/%{box_name}
97
+ show_fail: |-
98
+ Could not get information about box %{org}/%{box_name}
99
+ update_fail: |-
100
+ Failed to update box %{org}/%{box_name}
101
+ whoami:
102
+ read_error: |-
103
+ Failed to read organization %{org}
104
+ provider:
105
+ create_fail: |-
106
+ Failed to create provider %{provider} on box %{org}/%{box_name} for version %{version}
107
+ update_fail: |-
108
+ Failed to update provider %{provider} on box %{org}/%{box_name} for version %{version}
109
+ delete_fail: |-
110
+ Failed to delete provider %{provider} on box %{org}/%{box_name} for version %{version}
111
+ upload_fail: |-
112
+ Failed to upload provider %{provider} on box %{org}/%{box_name} for version %{version}
113
+ version:
114
+ create_fail: |-
115
+ Failed to create version %{version} on box %{org}/%{box_name}
116
+ delete_fail: |-
117
+ Failed to delete version %{version} on box %{org}/%{box_name}
118
+ release_fail: |-
119
+ Failed to release version %{version} on box %{org}/%{box_name}
120
+ revoke_fail: |-
121
+ Failed to revoke version %{version} on box %{org}/%{box_name}
122
+ update_fail: |-
123
+ Failed to update version %{version} on box %{org}/%{box_name}
124
+ server_error: |-
125
+ The Vagrant Cloud server responded with a not-OK response:
126
+
127
+ %{errors}
128
+ server_unreachable: |-
129
+ The Vagrant Cloud server is not currently accepting connections. Please check
130
+ your network connection and try again later.
131
+
132
+ unauthorized: |-
133
+ Invalid username or password. Please try again.
134
+ unexpected_error: |-
135
+ An unexpected error occured: %{error}
136
+
137
+ check_logged_in: |-
138
+ You are already logged in.
139
+ check_not_logged_in: |-
140
+ You are not currently logged in. Please run `vagrant login` and provide
141
+ your login information to authenticate.
142
+ command_header: |-
143
+ In a moment we will ask for your username and password to HashiCorp's
144
+ Vagrant Cloud. After authenticating, we will store an access token locally on
145
+ disk. Your login details will be transmitted over a secure connection, and
146
+ are never stored on disk locally.
147
+
148
+ If you do not have an Vagrant Cloud account, sign up at
149
+ https://www.vagrantcloud.com
150
+ invalid_login: |-
151
+ Invalid username or password. Please try again.
152
+ invalid_token: |-
153
+ Invalid token. Please try again.
154
+ logged_in: |-
155
+ You are now logged in.
156
+ logged_out: |-
157
+ You are logged out.
158
+ token_saved: |-
159
+ The token was successfully saved.
@@ -0,0 +1,30 @@
1
+ require "vagrant"
2
+ require 'vagrant_cloud'
3
+ require Vagrant.source_root.join("plugins/commands/cloud/util")
4
+ require Vagrant.source_root.join("plugins/commands/cloud/client/client")
5
+
6
+ module VagrantPlugins
7
+ module CloudCommand
8
+ class Plugin < Vagrant.plugin("2")
9
+ name "vagrant-cloud"
10
+ description <<-DESC
11
+ Provides the cloud command and internal API access to Vagrant Cloud.
12
+ DESC
13
+
14
+ command(:cloud) do
15
+ require_relative "root"
16
+ init!
17
+ Command::Root
18
+ end
19
+
20
+ protected
21
+
22
+ def self.init!
23
+ return if defined?(@_init)
24
+ I18n.load_path << File.expand_path("../locales/en.yml", __FILE__)
25
+ I18n.reload!
26
+ @_init = true
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,73 @@
1
+ require 'optparse'
2
+
3
+ module VagrantPlugins
4
+ module CloudCommand
5
+ module ProviderCommand
6
+ module Command
7
+ class Create < Vagrant.plugin("2", :command)
8
+ def execute
9
+ options = {}
10
+
11
+ opts = OptionParser.new do |o|
12
+ o.banner = "Usage: vagrant cloud provider create [options] organization/box-name provider-name version [url]"
13
+ o.separator ""
14
+ o.separator "Creates a provider entry on Vagrant Cloud"
15
+ o.separator ""
16
+ o.separator "Options:"
17
+ o.separator ""
18
+
19
+ o.on("-u", "--username USERNAME_OR_EMAIL", String, "Vagrant Cloud username or email address") do |t|
20
+ options[:username] = u
21
+ end
22
+ end
23
+
24
+ # Parse the options
25
+ argv = parse_options(opts)
26
+ return if !argv
27
+ if argv.empty? || argv.length > 4
28
+ raise Vagrant::Errors::CLIInvalidUsage,
29
+ help: opts.help.chomp
30
+ end
31
+
32
+ @client = VagrantPlugins::CloudCommand::Util.client_login(@env, options[:username])
33
+
34
+ box = argv.first.split('/', 2)
35
+ org = box[0]
36
+ box_name = box[1]
37
+ provider_name = argv[1]
38
+ version = argv[2]
39
+ url = argv[3]
40
+
41
+ upload_provider(org, box_name, provider_name, version, url, @client.token, options)
42
+ end
43
+
44
+ def upload_provider(org, box_name, provider_name, version, url, access_token, options)
45
+ if !url
46
+ @env.ui.warn(I18n.t("cloud_command.upload.no_url"))
47
+ end
48
+
49
+ org = options[:username] if options[:username]
50
+
51
+ server_url = VagrantPlugins::CloudCommand::Util.api_server_url
52
+ account = VagrantPlugins::CloudCommand::Util.account(org, access_token, server_url)
53
+ box = VagrantCloud::Box.new(account, box_name, nil, nil, nil, access_token)
54
+ cloud_version = VagrantCloud::Version.new(box, version, nil, nil, access_token)
55
+ provider = VagrantCloud::Provider.new(cloud_version, provider_name, nil, url, org, box_name, access_token)
56
+
57
+ begin
58
+ success = provider.create_provider
59
+ @env.ui.success(I18n.t("cloud_command.provider.create_success", provider:provider_name, org: org, box_name: box_name, version: version))
60
+ success = success.delete_if{|_, v|v.nil?}
61
+ VagrantPlugins::CloudCommand::Util.format_box_results(success, @env)
62
+ return 0
63
+ rescue VagrantCloud::ClientError => e
64
+ @env.ui.error(I18n.t("cloud_command.errors.provider.create_fail", provider:provider_name, org: org, box_name: box_name, version: version))
65
+ @env.ui.error(e)
66
+ return 1
67
+ end
68
+ end
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,70 @@
1
+ require 'optparse'
2
+
3
+ module VagrantPlugins
4
+ module CloudCommand
5
+ module ProviderCommand
6
+ module Command
7
+ class Delete < Vagrant.plugin("2", :command)
8
+ def execute
9
+ options = {}
10
+
11
+ opts = OptionParser.new do |o|
12
+ o.banner = "Usage: vagrant cloud provider delete [options] organization/box-name provider-name version"
13
+ o.separator ""
14
+ o.separator "Deletes a provider entry on Vagrant Cloud"
15
+ o.separator ""
16
+ o.separator "Options:"
17
+ o.separator ""
18
+
19
+ o.on("-u", "--username USERNAME_OR_EMAIL", String, "Vagrant Cloud username or email address") do |t|
20
+ options[:username] = u
21
+ end
22
+ end
23
+
24
+ # Parse the options
25
+ argv = parse_options(opts)
26
+ return if !argv
27
+ if argv.empty? || argv.length > 3
28
+ raise Vagrant::Errors::CLIInvalidUsage,
29
+ help: opts.help.chomp
30
+ end
31
+
32
+ box = argv.first.split('/', 2)
33
+ org = box[0]
34
+ box_name = box[1]
35
+ provider_name = argv[1]
36
+ version = argv[2]
37
+
38
+ @env.ui.warn(I18n.t("cloud_command.provider.delete_warn", provider: provider_name, version:version, box: argv.first))
39
+ cont = @env.ui.ask(I18n.t("cloud_command.continue"))
40
+ return 1 if cont.strip.downcase != "y"
41
+
42
+ @client = VagrantPlugins::CloudCommand::Util.client_login(@env, options[:username])
43
+
44
+ delete_provider(org, box_name, provider_name, version, @client.token, options)
45
+ end
46
+
47
+ def delete_provider(org, box_name, provider_name, version, access_token, options)
48
+ org = options[:username] if options[:username]
49
+
50
+ server_url = VagrantPlugins::CloudCommand::Util.api_server_url
51
+ account = VagrantPlugins::CloudCommand::Util.account(org, access_token, server_url)
52
+ box = VagrantCloud::Box.new(account, box_name, nil, nil, nil, access_token)
53
+ cloud_version = VagrantCloud::Version.new(box, version, nil, nil, access_token)
54
+ provider = VagrantCloud::Provider.new(cloud_version, provider_name, nil, nil, nil, nil, access_token)
55
+
56
+ begin
57
+ success = provider.delete
58
+ @env.ui.error(I18n.t("cloud_command.provider.delete_success", provider: provider_name, org: org, box_name: box_name, version: version))
59
+ return 0
60
+ rescue VagrantCloud::ClientError => e
61
+ @env.ui.error(I18n.t("cloud_command.errors.provider.delete_fail", provider: provider_name, org: org, box_name: box_name, version: version))
62
+ @env.ui.error(e)
63
+ return 1
64
+ end
65
+ end
66
+ end
67
+ end
68
+ end
69
+ end
70
+ end
@@ -0,0 +1,19 @@
1
+ require "vagrant"
2
+
3
+ module VagrantPlugins
4
+ module CloudCommand
5
+ module ProviderCommand
6
+ class Plugin < Vagrant.plugin("2")
7
+ name "vagrant cloud box"
8
+ description <<-DESC
9
+ Provider life cycle commands for Vagrant Cloud
10
+ DESC
11
+
12
+ command(:provider) do
13
+ require_relative "root"
14
+ Command::Root
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,77 @@
1
+ module VagrantPlugins
2
+ module CloudCommand
3
+ module ProviderCommand
4
+ module Command
5
+ class Root < Vagrant.plugin("2", :command)
6
+ def self.synopsis
7
+ "Provider commands"
8
+ end
9
+
10
+ def initialize(argv, env)
11
+ super
12
+
13
+ @main_args, @sub_command, @sub_args = split_main_and_subcommand(argv)
14
+ @subcommands = Vagrant::Registry.new
15
+ @subcommands.register(:create) do
16
+ require File.expand_path("../create", __FILE__)
17
+ Command::Create
18
+ end
19
+ @subcommands.register(:delete) do
20
+ require File.expand_path("../delete", __FILE__)
21
+ Command::Delete
22
+ end
23
+ @subcommands.register(:update) do
24
+ require File.expand_path("../update", __FILE__)
25
+ Command::Update
26
+ end
27
+ @subcommands.register(:upload) do
28
+ require File.expand_path("../upload", __FILE__)
29
+ Command::Upload
30
+ end
31
+ end
32
+
33
+ def execute
34
+ if @main_args.include?("-h") || @main_args.include?("--help")
35
+ # Print the help for all the provider commands.
36
+ return help
37
+ end
38
+
39
+ # If we reached this far then we must have a subcommand. If not,
40
+ # then we also just print the help and exit.
41
+ command_class = @subcommands.get(@sub_command.to_sym) if @sub_command
42
+ return help if !command_class || !@sub_command
43
+ @logger.debug("Invoking command class: #{command_class} #{@sub_args.inspect}")
44
+
45
+ # Initialize and execute the command class
46
+ command_class.new(@sub_args, @env).execute
47
+ end
48
+
49
+ # Prints the help out for this command
50
+ def help
51
+ opts = OptionParser.new do |opts|
52
+ opts.banner = "Usage: vagrant cloud provider <subcommand> [<args>]"
53
+ opts.separator ""
54
+ opts.separator "For various provider actions with Vagrant Cloud"
55
+ opts.separator ""
56
+ opts.separator "Available subcommands:"
57
+
58
+ # Add the available subcommands as separators in order to print them
59
+ # out as well.
60
+ keys = []
61
+ @subcommands.each { |key, value| keys << key.to_s }
62
+
63
+ keys.sort.each do |key|
64
+ opts.separator " #{key}"
65
+ end
66
+
67
+ opts.separator ""
68
+ opts.separator "For help on any individual subcommand run `vagrant cloud provider <subcommand> -h`"
69
+ end
70
+
71
+ @env.ui.info(opts.help, prefix: false)
72
+ end
73
+ end
74
+ end
75
+ end
76
+ end
77
+ end
@@ -0,0 +1,73 @@
1
+ require 'optparse'
2
+
3
+ module VagrantPlugins
4
+ module CloudCommand
5
+ module ProviderCommand
6
+ module Command
7
+ class Update < Vagrant.plugin("2", :command)
8
+ def execute
9
+ options = {}
10
+
11
+ opts = OptionParser.new do |o|
12
+ o.banner = "Usage: vagrant cloud provider update [options] organization/box-name provider-name version url"
13
+ o.separator ""
14
+ o.separator "Updates a provider entry on Vagrant Cloud"
15
+ o.separator ""
16
+ o.separator "Options:"
17
+ o.separator ""
18
+
19
+ o.on("-u", "--username USERNAME_OR_EMAIL", String, "Vagrant Cloud username or email address") do |t|
20
+ options[:username] = u
21
+ end
22
+ end
23
+
24
+ # Parse the options
25
+ argv = parse_options(opts)
26
+ return if !argv
27
+ if argv.empty? || argv.length > 4
28
+ raise Vagrant::Errors::CLIInvalidUsage,
29
+ help: opts.help.chomp
30
+ end
31
+
32
+ @client = VagrantPlugins::CloudCommand::Util.client_login(@env, options[:username])
33
+
34
+ box = argv.first.split('/', 2)
35
+ org = box[0]
36
+ box_name = box[1]
37
+ provider_name = argv[1]
38
+ version = argv[2]
39
+ url = argv[3]
40
+
41
+ update_provider(org, box_name, provider_name, version, url, @client.token, options)
42
+ end
43
+
44
+ def update_provider(org, box_name, provider_name, version, url, access_token, options)
45
+ if !url
46
+ @env.ui.warn(I18n.t("cloud_command.upload.no_url"))
47
+ end
48
+
49
+ org = options[:username] if options[:username]
50
+
51
+ server_url = VagrantPlugins::CloudCommand::Util.api_server_url
52
+ account = VagrantPlugins::CloudCommand::Util.account(org, access_token, server_url)
53
+ box = VagrantCloud::Box.new(account, box_name, nil, nil, nil, access_token)
54
+ cloud_version = VagrantCloud::Version.new(box, version, nil, nil, access_token)
55
+ provider = VagrantCloud::Provider.new(cloud_version, provider_name, nil, url, org, box_name, access_token)
56
+
57
+ begin
58
+ success = provider.update
59
+ @env.ui.success(I18n.t("cloud_command.provider.update_success", provider:provider_name, org: org, box_name: box_name, version: version))
60
+ success = success.delete_if{|_, v|v.nil?}
61
+ VagrantPlugins::CloudCommand::Util.format_box_results(success, @env)
62
+ return 0
63
+ rescue VagrantCloud::ClientError => e
64
+ @env.ui.error(I18n.t("cloud_command.errors.provider.update_fail", provider:provider_name, org: org, box_name: box_name, version: version))
65
+ @env.ui.error(e)
66
+ return 1
67
+ end
68
+ end
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,75 @@
1
+ require 'optparse'
2
+ require "vagrant/util/uploader"
3
+
4
+ module VagrantPlugins
5
+ module CloudCommand
6
+ module ProviderCommand
7
+ module Command
8
+ class Upload < Vagrant.plugin("2", :command)
9
+ def execute
10
+ options = {}
11
+
12
+ opts = OptionParser.new do |o|
13
+ o.banner = "Usage: vagrant cloud provider upload [options] organization/box-name provider-name version box-file"
14
+ o.separator ""
15
+ o.separator "Uploads a box file to Vagrant Cloud for a specific provider"
16
+ o.separator ""
17
+ o.separator "Options:"
18
+ o.separator ""
19
+
20
+ o.on("-u", "--username USERNAME_OR_EMAIL", String, "Vagrant Cloud username or email address") do |t|
21
+ options[:username] = u
22
+ end
23
+ end
24
+
25
+ # Parse the options
26
+ argv = parse_options(opts)
27
+ return if !argv
28
+ if argv.empty? || argv.length > 4
29
+ raise Vagrant::Errors::CLIInvalidUsage,
30
+ help: opts.help.chomp
31
+ end
32
+
33
+ @client = VagrantPlugins::CloudCommand::Util.client_login(@env, options[:username])
34
+
35
+ box = argv.first.split('/', 2)
36
+ org = box[0]
37
+ box_name = box[1]
38
+ provider_name = argv[1]
39
+ version = argv[2]
40
+ file = argv[3] # path expand
41
+
42
+ upload_provider(org, box_name, provider_name, version, file, @client.token, options)
43
+ end
44
+
45
+ def upload_provider(org, box_name, provider_name, version, file, access_token, options)
46
+ org = options[:username] if options[:username]
47
+
48
+ server_url = VagrantPlugins::CloudCommand::Util.api_server_url
49
+ account = VagrantPlugins::CloudCommand::Util.account(org, access_token, server_url)
50
+ box = VagrantCloud::Box.new(account, box_name, nil, nil, nil, access_token)
51
+ cloud_version = VagrantCloud::Version.new(box, version, nil, nil, access_token)
52
+ provider = VagrantCloud::Provider.new(cloud_version, provider_name, nil, nil, org, box_name, access_token)
53
+
54
+ ul = Vagrant::Util::Uploader.new(provider.upload_url, file, ui: @env.ui)
55
+ ui = Vagrant::UI::Prefixed.new(@env.ui, "cloud")
56
+
57
+ begin
58
+ ui.output(I18n.t("cloud_command.provider.upload", org: org, box_name: box_name, version: version, provider: provider_name))
59
+ ui.info("Upload File: #{file}")
60
+
61
+ ul.upload!
62
+
63
+ ui.success("Successfully uploaded box '#{org}/#{box_name}' (v#{version}) for '#{provider_name}'")
64
+ return 0
65
+ rescue Vagrant::Errors::UploaderError, VagrantCloud::ClientError => e
66
+ @env.ui.error(I18n.t("cloud_command.errors.provider.upload_fail", provider: provider_name, org: org, box_name: box_name, version: version))
67
+ @env.ui.error(e)
68
+ return 1
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end
75
+ end