vagrant-unbundled 2.2.6.2 → 2.2.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.hashibot.hcl +14 -0
- data/CHANGELOG.md +213 -2
- data/Gemfile +1 -1
- data/README.md +9 -51
- data/RELEASE.md +1 -1
- data/bin/vagrant +23 -0
- data/contrib/README.md +1 -0
- data/contrib/bash/completion.sh +13 -1
- data/contrib/sudoers/linux-suse +2 -2
- data/contrib/zsh/_vagrant +738 -0
- data/contrib/zsh/generate_zsh_completion.rb +165 -0
- data/lib/vagrant.rb +25 -4
- data/lib/vagrant/action.rb +8 -0
- data/lib/vagrant/action/builder.rb +184 -38
- data/lib/vagrant/action/builtin/box_add.rb +20 -8
- data/lib/vagrant/action/builtin/box_check_outdated.rb +12 -15
- data/lib/vagrant/action/builtin/cleanup_disks.rb +56 -0
- data/lib/vagrant/action/builtin/cloud_init_setup.rb +122 -0
- data/lib/vagrant/action/builtin/cloud_init_wait.rb +30 -0
- data/lib/vagrant/action/builtin/delayed.rb +26 -0
- data/lib/vagrant/action/builtin/disk.rb +52 -0
- data/lib/vagrant/action/builtin/handle_box.rb +3 -1
- data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +28 -9
- data/lib/vagrant/action/builtin/has_provisioner.rb +36 -0
- data/lib/vagrant/action/builtin/mixin_provisioners.rb +20 -1
- data/lib/vagrant/action/builtin/mixin_synced_folders.rb +20 -21
- data/lib/vagrant/action/builtin/set_hostname.rb +5 -1
- data/lib/vagrant/action/builtin/ssh_run.rb +21 -3
- data/lib/vagrant/action/builtin/synced_folders.rb +16 -0
- data/lib/vagrant/action/builtin/trigger.rb +37 -0
- data/lib/vagrant/action/hook.rb +76 -23
- data/lib/vagrant/action/runner.rb +12 -27
- data/lib/vagrant/action/warden.rb +28 -22
- data/lib/vagrant/box.rb +11 -4
- data/lib/vagrant/box_collection.rb +1 -1
- data/lib/vagrant/box_metadata.rb +17 -3
- data/lib/vagrant/bundler.rb +298 -59
- data/lib/vagrant/cli.rb +4 -2
- data/lib/vagrant/errors.rb +61 -1
- data/lib/vagrant/machine.rb +64 -11
- data/lib/vagrant/machine_index.rb +28 -1
- data/lib/vagrant/plugin/manager.rb +25 -14
- data/lib/vagrant/plugin/v2/command.rb +7 -2
- data/lib/vagrant/plugin/v2/components.rb +6 -0
- data/lib/vagrant/plugin/v2/manager.rb +67 -0
- data/lib/vagrant/plugin/v2/plugin.rb +13 -0
- data/lib/vagrant/plugin/v2/synced_folder.rb +50 -0
- data/lib/vagrant/plugin/v2/trigger.rb +64 -25
- data/lib/vagrant/shared_helpers.rb +36 -0
- data/lib/vagrant/ui.rb +51 -5
- data/lib/vagrant/util.rb +1 -0
- data/lib/vagrant/util/ansi_escape_code_remover.rb +1 -1
- data/lib/vagrant/util/caps.rb +48 -0
- data/lib/vagrant/util/credential_scrubber.rb +1 -1
- data/lib/vagrant/util/curl_helper.rb +8 -5
- data/lib/vagrant/util/directory.rb +19 -0
- data/lib/vagrant/util/downloader.rb +10 -5
- data/lib/vagrant/util/file_checksum.rb +6 -2
- data/lib/vagrant/util/guest_hosts.rb +68 -0
- data/lib/vagrant/util/guest_inspection.rb +9 -1
- data/lib/vagrant/util/install_cli_autocomplete.rb +118 -0
- data/lib/vagrant/util/io.rb +7 -27
- data/lib/vagrant/util/ipv4_interfaces.rb +15 -0
- data/lib/vagrant/util/is_port_open.rb +8 -20
- data/lib/vagrant/util/map_command_options.rb +33 -0
- data/lib/vagrant/util/mime.rb +92 -0
- data/lib/vagrant/util/network_ip.rb +11 -1
- data/lib/vagrant/util/numeric.rb +69 -0
- data/lib/vagrant/util/platform.rb +10 -2
- data/lib/vagrant/util/powershell.rb +1 -1
- data/lib/vagrant/util/subprocess.rb +9 -1
- data/lib/vagrant/util/template_renderer.rb +2 -2
- data/lib/vagrant/util/uploader.rb +7 -4
- data/lib/vagrant/vagrantfile.rb +1 -1
- data/plugins/commands/autocomplete/command/install.rb +49 -0
- data/plugins/commands/autocomplete/command/root.rb +64 -0
- data/plugins/commands/autocomplete/plugin.rb +18 -0
- data/plugins/commands/box/command/outdated.rb +14 -2
- data/plugins/commands/cap/command.rb +5 -1
- data/plugins/commands/cloud/auth/login.rb +20 -23
- data/plugins/commands/cloud/auth/logout.rb +2 -10
- data/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb +57 -0
- data/plugins/commands/cloud/auth/whoami.rb +18 -20
- data/plugins/commands/cloud/box/create.rb +33 -29
- data/plugins/commands/cloud/box/delete.rb +30 -24
- data/plugins/commands/cloud/box/show.rb +41 -31
- data/plugins/commands/cloud/box/update.rb +34 -26
- data/plugins/commands/cloud/client/client.rb +50 -81
- data/plugins/commands/cloud/list.rb +3 -4
- data/plugins/commands/cloud/locales/en.yml +10 -10
- data/plugins/commands/cloud/plugin.rb +10 -0
- data/plugins/commands/cloud/provider/create.rb +38 -28
- data/plugins/commands/cloud/provider/delete.rb +39 -29
- data/plugins/commands/cloud/provider/update.rb +37 -28
- data/plugins/commands/cloud/provider/upload.rb +44 -34
- data/plugins/commands/cloud/publish.rb +185 -108
- data/plugins/commands/cloud/search.rb +34 -21
- data/plugins/commands/cloud/util.rb +266 -162
- data/plugins/commands/cloud/version/create.rb +33 -28
- data/plugins/commands/cloud/version/delete.rb +35 -28
- data/plugins/commands/cloud/version/release.rb +35 -29
- data/plugins/commands/cloud/version/revoke.rb +36 -29
- data/plugins/commands/cloud/version/update.rb +29 -25
- data/plugins/commands/destroy/command.rb +6 -2
- data/plugins/commands/login/plugin.rb +0 -13
- data/plugins/commands/snapshot/command/save.rb +13 -8
- data/plugins/commands/ssh_config/command.rb +1 -1
- data/plugins/communicators/ssh/communicator.rb +25 -24
- data/plugins/communicators/winrm/config.rb +1 -1
- data/plugins/communicators/winrm/helper.rb +1 -1
- data/plugins/communicators/winrm/shell.rb +1 -1
- data/plugins/communicators/winssh/communicator.rb +126 -38
- data/plugins/communicators/winssh/config.rb +3 -7
- data/plugins/guests/alpine/cap/change_host_name.rb +10 -11
- data/plugins/guests/alpine/cap/rsync.rb +1 -1
- data/plugins/guests/alpine/plugin.rb +16 -0
- data/plugins/guests/alt/cap/change_host_name.rb +40 -53
- data/plugins/guests/arch/cap/change_host_name.rb +5 -14
- data/plugins/guests/arch/cap/configure_networks.rb +27 -10
- data/plugins/guests/arch/cap/smb.rb +1 -1
- data/plugins/guests/atomic/cap/change_host_name.rb +5 -14
- data/plugins/guests/centos/cap/flavor.rb +24 -0
- data/plugins/guests/centos/guest.rb +9 -0
- data/plugins/guests/centos/plugin.rb +20 -0
- data/plugins/guests/darwin/cap/change_host_name.rb +10 -6
- data/plugins/guests/darwin/cap/darwin_version.rb +40 -0
- data/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +1 -1
- data/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +109 -13
- data/plugins/guests/darwin/plugin.rb +15 -0
- data/plugins/guests/debian/cap/change_host_name.rb +12 -11
- data/plugins/guests/debian/cap/configure_networks.rb +14 -6
- data/plugins/guests/esxi/cap/public_key.rb +3 -1
- data/plugins/guests/freebsd/cap/change_host_name.rb +10 -6
- data/plugins/guests/gentoo/cap/change_host_name.rb +14 -22
- data/plugins/guests/haiku/cap/rsync.rb +19 -0
- data/plugins/guests/haiku/plugin.rb +15 -0
- data/plugins/guests/linux/cap/change_host_name.rb +46 -0
- data/plugins/guests/linux/cap/halt.rb +9 -1
- data/plugins/guests/linux/cap/mount_smb_shared_folder.rb +25 -34
- data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +10 -11
- data/plugins/guests/linux/cap/persist_mount_shared_folder.rb +75 -0
- data/plugins/guests/linux/cap/reboot.rb +53 -0
- data/plugins/guests/linux/plugin.rb +20 -0
- data/plugins/guests/omnios/cap/change_host_name.rb +10 -16
- data/plugins/guests/openbsd/cap/change_host_name.rb +10 -6
- data/plugins/guests/photon/cap/change_host_name.rb +9 -15
- data/plugins/guests/pld/cap/change_host_name.rb +11 -17
- data/plugins/guests/redhat/cap/change_host_name.rb +14 -5
- data/plugins/guests/redhat/cap/flavor.rb +3 -1
- data/plugins/guests/redhat/cap/nfs_client.rb +2 -2
- data/plugins/guests/redhat/cap/smb.rb +20 -0
- data/plugins/guests/redhat/plugin.rb +5 -0
- data/plugins/guests/slackware/cap/change_host_name.rb +11 -17
- data/plugins/guests/solaris11/plugin.rb +5 -0
- data/plugins/guests/suse/cap/change_host_name.rb +31 -9
- data/plugins/guests/windows/cap/public_key.rb +3 -3
- data/plugins/guests/windows/cap/reboot.rb +10 -5
- data/plugins/hosts/darwin/cap/fs_iso.rb +49 -0
- data/plugins/hosts/darwin/cap/nfs.rb +11 -0
- data/plugins/hosts/darwin/plugin.rb +15 -0
- data/plugins/hosts/linux/cap/fs_iso.rb +49 -0
- data/plugins/hosts/linux/cap/nfs.rb +21 -2
- data/plugins/hosts/linux/cap/rdp.rb +1 -1
- data/plugins/hosts/linux/plugin.rb +10 -0
- data/plugins/hosts/windows/cap/fs_iso.rb +48 -0
- data/plugins/hosts/windows/cap/rdp.rb +1 -1
- data/plugins/hosts/windows/plugin.rb +15 -0
- data/plugins/kernel_v2/config/cloud_init.rb +133 -0
- data/plugins/kernel_v2/config/disk.rb +221 -0
- data/plugins/kernel_v2/config/ssh_connect.rb +24 -0
- data/plugins/kernel_v2/config/vm.rb +230 -15
- data/plugins/kernel_v2/config/vm_provisioner.rb +17 -3
- data/plugins/kernel_v2/config/vm_trigger.rb +6 -5
- data/plugins/providers/docker/action.rb +8 -17
- data/plugins/providers/docker/action/forwarded_ports.rb +2 -0
- data/plugins/providers/docker/action/prepare_forwarded_port_collision_params.rb +61 -0
- data/plugins/providers/docker/cap/has_communicator.rb +11 -0
- data/plugins/providers/docker/communicator.rb +1 -1
- data/plugins/providers/docker/driver.rb +73 -10
- data/plugins/providers/docker/errors.rb +4 -0
- data/plugins/providers/docker/executor/local.rb +7 -1
- data/plugins/providers/docker/plugin.rb +5 -0
- data/plugins/providers/hyperv/action.rb +3 -1
- data/plugins/providers/hyperv/action/configure.rb +8 -0
- data/plugins/providers/hyperv/action/export.rb +4 -2
- data/plugins/providers/hyperv/cap/cleanup_disks.rb +54 -0
- data/plugins/providers/hyperv/cap/configure_disks.rb +200 -0
- data/plugins/providers/hyperv/cap/validate_disk_ext.rb +34 -0
- data/plugins/providers/hyperv/config.rb +5 -0
- data/plugins/providers/hyperv/driver.rb +90 -9
- data/plugins/providers/hyperv/plugin.rb +25 -0
- data/plugins/providers/hyperv/scripts/attach_disk_drive.ps1 +28 -0
- data/plugins/providers/hyperv/scripts/dismount_vhd.ps1 +13 -0
- data/plugins/providers/hyperv/scripts/get_vhd.ps1 +16 -0
- data/plugins/providers/hyperv/scripts/get_vm_status.ps1 +1 -1
- data/plugins/providers/hyperv/scripts/list_hdds.ps1 +17 -0
- data/plugins/providers/hyperv/scripts/new_vhd.ps1 +31 -0
- data/plugins/providers/hyperv/scripts/remove_disk_drive.ps1 +25 -0
- data/plugins/providers/hyperv/scripts/resize_disk_drive.ps1 +18 -0
- data/plugins/providers/hyperv/scripts/set_enhanced_session_transport_type.ps1 +24 -0
- data/plugins/providers/hyperv/scripts/set_vm_integration_services.ps1 +3 -3
- data/plugins/providers/hyperv/scripts/utils/VagrantVM/VagrantVM.psm1 +14 -6
- data/plugins/providers/virtualbox/action.rb +14 -1
- data/plugins/providers/virtualbox/action/clean_machine_folder.rb +10 -1
- data/plugins/providers/virtualbox/action/export.rb +4 -2
- data/plugins/providers/virtualbox/action/forward_ports.rb +2 -2
- data/plugins/providers/virtualbox/action/import.rb +8 -4
- data/plugins/providers/virtualbox/action/prepare_clone_snapshot.rb +4 -2
- data/plugins/providers/virtualbox/action/snapshot_delete.rb +4 -2
- data/plugins/providers/virtualbox/action/snapshot_restore.rb +4 -2
- data/plugins/providers/virtualbox/cap/cleanup_disks.rb +85 -0
- data/plugins/providers/virtualbox/cap/configure_disks.rb +440 -0
- data/plugins/providers/virtualbox/cap/mount_options.rb +35 -0
- data/plugins/providers/virtualbox/cap/validate_disk_ext.rb +34 -0
- data/plugins/providers/virtualbox/driver/base.rb +15 -0
- data/plugins/providers/virtualbox/driver/meta.rb +17 -2
- data/plugins/providers/virtualbox/driver/version_5_0.rb +217 -2
- data/plugins/providers/virtualbox/driver/version_6_1.rb +39 -0
- data/plugins/providers/virtualbox/model/storage_controller.rb +135 -0
- data/plugins/providers/virtualbox/model/storage_controller_array.rb +98 -0
- data/plugins/providers/virtualbox/plugin.rb +38 -0
- data/plugins/providers/virtualbox/provider.rb +2 -1
- data/plugins/providers/virtualbox/synced_folder.rb +1 -0
- data/plugins/provisioners/ansible/cap/guest/alpine/ansible_install.rb +44 -0
- data/plugins/provisioners/ansible/cap/guest/arch/ansible_install.rb +20 -3
- data/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +4 -5
- data/plugins/provisioners/ansible/cap/guest/fedora/ansible_install.rb +2 -2
- data/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb +2 -2
- data/plugins/provisioners/ansible/cap/guest/pip/pip.rb +8 -4
- data/plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb +2 -2
- data/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb +2 -1
- data/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install.rb +3 -3
- data/plugins/provisioners/ansible/plugin.rb +5 -0
- data/plugins/provisioners/ansible/provisioner/base.rb +1 -1
- data/plugins/provisioners/container/client.rb +203 -0
- data/plugins/provisioners/container/config.rb +83 -0
- data/plugins/provisioners/container/installer.rb +13 -0
- data/plugins/provisioners/container/plugin.rb +23 -0
- data/plugins/provisioners/container/provisioner.rb +28 -0
- data/plugins/provisioners/docker/cap/{redhat → centos}/docker_install.rb +10 -7
- data/plugins/provisioners/docker/cap/centos/docker_start_service.rb +24 -0
- data/plugins/provisioners/docker/client.rb +4 -175
- data/plugins/provisioners/docker/config.rb +2 -72
- data/plugins/provisioners/docker/installer.rb +3 -5
- data/plugins/provisioners/docker/plugin.rb +6 -6
- data/plugins/provisioners/docker/provisioner.rb +4 -10
- data/plugins/provisioners/podman/cap/centos/podman_install.rb +35 -0
- data/plugins/provisioners/podman/cap/linux/podman_installed.rb +13 -0
- data/plugins/provisioners/podman/cap/redhat/podman_install.rb +26 -0
- data/plugins/provisioners/podman/client.rb +12 -0
- data/plugins/provisioners/podman/config.rb +28 -0
- data/plugins/provisioners/podman/installer.rb +33 -0
- data/plugins/provisioners/podman/plugin.rb +38 -0
- data/plugins/provisioners/podman/provisioner.rb +52 -0
- data/plugins/provisioners/salt/provisioner.rb +4 -0
- data/plugins/provisioners/shell/config.rb +1 -6
- data/plugins/provisioners/shell/provisioner.rb +61 -26
- data/plugins/synced_folders/nfs/synced_folder.rb +3 -1
- data/plugins/synced_folders/smb/cap/default_fstab_modification.rb +11 -0
- data/plugins/synced_folders/smb/cap/mount_options.rb +56 -0
- data/plugins/synced_folders/smb/plugin.rb +20 -0
- data/plugins/synced_folders/smb/synced_folder.rb +2 -2
- data/plugins/synced_folders/unix_mount_helpers.rb +14 -0
- data/scripts/website_push_www.sh +1 -1
- data/templates/commands/init/Vagrantfile.erb +1 -1
- data/templates/guests/arch/{network_dhcp.erb → default_network/network_dhcp.erb} +0 -0
- data/templates/guests/arch/{network_static.erb → default_network/network_static.erb} +0 -0
- data/templates/guests/arch/{network_static6.erb → default_network/network_static6.erb} +0 -0
- data/templates/guests/arch/systemd_networkd/network_dhcp.erb +6 -0
- data/templates/guests/arch/systemd_networkd/network_static.erb +9 -0
- data/templates/guests/arch/systemd_networkd/network_static6.erb +9 -0
- data/templates/guests/linux/etc_fstab.erb +6 -0
- data/templates/locales/en.yml +235 -6
- data/templates/locales/providers_docker.yml +6 -0
- data/templates/nfs/exports_darwin.erb +7 -0
- data/vagrant.gemspec +14 -15
- data/version.txt +1 -1
- metadata +3577 -3855
- data/lib/vagrant/action/builtin/after_trigger.rb +0 -31
- data/lib/vagrant/action/builtin/before_trigger.rb +0 -28
- data/plugins/commands/login/client.rb +0 -253
- data/plugins/commands/login/command.rb +0 -137
- data/plugins/commands/login/errors.rb +0 -24
- data/plugins/commands/login/locales/en.yml +0 -49
- data/plugins/provisioners/docker/cap/redhat/docker_start_service.rb +0 -16
- data/scripts/website_push_docs.sh +0 -40
@@ -4,6 +4,8 @@ module VagrantPlugins
|
|
4
4
|
module CloudCommand
|
5
5
|
module Command
|
6
6
|
class List < Vagrant.plugin("2", :command)
|
7
|
+
include Util
|
8
|
+
|
7
9
|
def execute
|
8
10
|
options = {}
|
9
11
|
|
@@ -27,9 +29,6 @@ module VagrantPlugins
|
|
27
29
|
o.on("-s", "--sort-by", "Column to sort list (created, downloads, updated)") do |s|
|
28
30
|
options[:check] = s
|
29
31
|
end
|
30
|
-
o.on("-u", "--username USERNAME_OR_EMAIL", String, "Vagrant Cloud username or email address") do |t|
|
31
|
-
options[:username] = u
|
32
|
-
end
|
33
32
|
end
|
34
33
|
|
35
34
|
# Parse the options
|
@@ -40,7 +39,7 @@ module VagrantPlugins
|
|
40
39
|
help: opts.help.chomp
|
41
40
|
end
|
42
41
|
|
43
|
-
@client =
|
42
|
+
@client = client_login(@env)
|
44
43
|
|
45
44
|
# TODO: This endpoint is not implemented yet
|
46
45
|
|
@@ -13,14 +13,8 @@ en:
|
|
13
13
|
|
14
14
|
Press ctrl-c to cancel...
|
15
15
|
publish:
|
16
|
-
|
17
|
-
|
18
|
-
box_create:
|
19
|
-
Creating a box entry...
|
20
|
-
version_create:
|
21
|
-
Creating a version entry...
|
22
|
-
provider_create:
|
23
|
-
Creating a provider entry...
|
16
|
+
box_save:
|
17
|
+
Saving box information...
|
24
18
|
upload_provider:
|
25
19
|
Uploading provider with file %{file}
|
26
20
|
release:
|
@@ -45,7 +39,7 @@ en:
|
|
45
39
|
version_desc: |-
|
46
40
|
Version Description: %{version_description}
|
47
41
|
continue: |-
|
48
|
-
Do you wish to continue? [y/N]
|
42
|
+
Do you wish to continue? [y/N]
|
49
43
|
box:
|
50
44
|
show_filter_empty: |-
|
51
45
|
No version matched %{version} for %{org}/%{box_name}
|
@@ -57,6 +51,8 @@ en:
|
|
57
51
|
This will completely remove %{box} from Vagrant Cloud. This cannot be undone.
|
58
52
|
update_success: |-
|
59
53
|
Updated box %{org}/%{box_name}
|
54
|
+
not_found: |-
|
55
|
+
Failed to locate requested box: %{org}/%{box_name}
|
60
56
|
search:
|
61
57
|
no_results: |-
|
62
58
|
No results found for `%{query}`
|
@@ -77,6 +73,8 @@ en:
|
|
77
73
|
Deleted provider %{provider} on %{org}/%{box_name} for version %{version}
|
78
74
|
update_success: |-
|
79
75
|
Updated provider %{provider} on %{org}/%{box_name} for version %{version}
|
76
|
+
not_found: |-
|
77
|
+
Failed to locate %{provider_name} provider for %{org}/%{box_name} on version %{version}
|
80
78
|
version:
|
81
79
|
create_success: |-
|
82
80
|
Created version %{version} on %{org}/%{box_name} for version %{version}
|
@@ -94,6 +92,8 @@ en:
|
|
94
92
|
This will release version %{version} from %{box} to Vagrant Cloud and be available to download.
|
95
93
|
delete_warn: |-
|
96
94
|
This will completely remove version %{version} from %{box} from Vagrant Cloud. This cannot be undone.
|
95
|
+
not_found: |-
|
96
|
+
Failed to locate version %{version} for %{org}/%{box_name}
|
97
97
|
errors:
|
98
98
|
search:
|
99
99
|
fail: |-
|
@@ -144,7 +144,7 @@ en:
|
|
144
144
|
unauthorized: |-
|
145
145
|
Invalid username or password. Please try again.
|
146
146
|
unexpected_error: |-
|
147
|
-
An unexpected error
|
147
|
+
An unexpected error occurred: %{error}
|
148
148
|
|
149
149
|
check_logged_in: |-
|
150
150
|
You are already logged in.
|
@@ -12,6 +12,11 @@ module VagrantPlugins
|
|
12
12
|
DESC
|
13
13
|
|
14
14
|
command(:cloud) do
|
15
|
+
# Set this to match Vagant logging level so we get
|
16
|
+
# desired request/response information within the
|
17
|
+
# logger output
|
18
|
+
ENV["VAGRANT_CLOUD_LOG"] = Vagrant.log_level
|
19
|
+
|
15
20
|
require_relative "root"
|
16
21
|
init!
|
17
22
|
Command::Root
|
@@ -22,6 +27,11 @@ module VagrantPlugins
|
|
22
27
|
hook.prepend(AddAuthentication)
|
23
28
|
end
|
24
29
|
|
30
|
+
action_hook(:cloud_authenticated_boxes, :authenticate_box_downloader) do |hook|
|
31
|
+
require_relative "auth/middleware/add_downloader_authentication"
|
32
|
+
hook.prepend(AddDownloaderAuthentication)
|
33
|
+
end
|
34
|
+
|
25
35
|
protected
|
26
36
|
|
27
37
|
def self.init!
|
@@ -5,6 +5,8 @@ module VagrantPlugins
|
|
5
5
|
module ProviderCommand
|
6
6
|
module Command
|
7
7
|
class Create < Vagrant.plugin("2", :command)
|
8
|
+
include Util
|
9
|
+
|
8
10
|
def execute
|
9
11
|
options = {}
|
10
12
|
|
@@ -16,9 +18,6 @@ module VagrantPlugins
|
|
16
18
|
o.separator "Options:"
|
17
19
|
o.separator ""
|
18
20
|
|
19
|
-
o.on("-u", "--username USERNAME_OR_EMAIL", String, "Vagrant Cloud username or email address") do |u|
|
20
|
-
options[:username] = u
|
21
|
-
end
|
22
21
|
o.on("-c", "--checksum CHECKSUM_VALUE", String, "Checksum of the box for this provider. --checksum-type option is required.") do |c|
|
23
22
|
options[:checksum] = c
|
24
23
|
end
|
@@ -30,48 +29,59 @@ module VagrantPlugins
|
|
30
29
|
# Parse the options
|
31
30
|
argv = parse_options(opts)
|
32
31
|
return if !argv
|
33
|
-
if argv.
|
32
|
+
if argv.count < 3 || argv.count > 4
|
34
33
|
raise Vagrant::Errors::CLIInvalidUsage,
|
35
34
|
help: opts.help.chomp
|
36
35
|
end
|
37
36
|
|
38
|
-
@client =
|
37
|
+
@client = client_login(@env)
|
39
38
|
|
40
|
-
|
41
|
-
org = box[0]
|
42
|
-
box_name = box[1]
|
39
|
+
org, box_name = argv.first.split('/', 2)
|
43
40
|
provider_name = argv[1]
|
44
41
|
version = argv[2]
|
45
42
|
url = argv[3]
|
46
43
|
|
47
|
-
|
44
|
+
create_provider(org, box_name, version, provider_name, url, @client.token, options)
|
48
45
|
end
|
49
46
|
|
50
|
-
|
47
|
+
# Create a provider for the box version
|
48
|
+
#
|
49
|
+
# @param [String] org Organization name
|
50
|
+
# @param [String] box Box name
|
51
|
+
# @param [String] version Box version
|
52
|
+
# @param [String] provider Provider name
|
53
|
+
# @param [String] url Provider asset URL
|
54
|
+
# @param [String] access_token User Vagrant Cloud access token
|
55
|
+
# @param [Hash] options
|
56
|
+
# @option options [String] :checksum Checksum of the box asset
|
57
|
+
# @option options [String] :checksum_type Type of the checksum
|
58
|
+
# @return [Integer]
|
59
|
+
def create_provider(org, box, version, provider, url, access_token, options={})
|
51
60
|
if !url
|
52
61
|
@env.ui.warn(I18n.t("cloud_command.upload.no_url"))
|
53
62
|
end
|
63
|
+
account = VagrantCloud::Account.new(
|
64
|
+
custom_server: api_server_url,
|
65
|
+
access_token: access_token
|
66
|
+
)
|
67
|
+
with_version(account: account, org: org, box: box, version: version) do |version|
|
68
|
+
provider = version.add_provider(provider)
|
69
|
+
provider.checksum = options[:checksum] if options.key?(:checksum)
|
70
|
+
provider.checksum_type = options[:checksum_type] if options.key?(:checksum_type)
|
71
|
+
provider.url = url if url
|
54
72
|
|
55
|
-
|
56
|
-
|
57
|
-
server_url = VagrantPlugins::CloudCommand::Util.api_server_url
|
58
|
-
account = VagrantPlugins::CloudCommand::Util.account(org, access_token, server_url)
|
59
|
-
box = VagrantCloud::Box.new(account, box_name, nil, nil, nil, access_token)
|
60
|
-
cloud_version = VagrantCloud::Version.new(box, version, nil, nil, access_token)
|
61
|
-
provider = VagrantCloud::Provider.new(cloud_version, provider_name, nil, url, org, box_name,
|
62
|
-
access_token, nil, options[:checksum], options[:checksum_type])
|
73
|
+
provider.save
|
63
74
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
VagrantPlugins::CloudCommand::Util.format_box_results(success, @env)
|
69
|
-
return 0
|
70
|
-
rescue VagrantCloud::ClientError => e
|
71
|
-
@env.ui.error(I18n.t("cloud_command.errors.provider.create_fail", provider: provider_name, org: org, box_name: box_name, version: version))
|
72
|
-
@env.ui.error(e)
|
73
|
-
return 1
|
75
|
+
@env.ui.success(I18n.t("cloud_command.provider.create_success",
|
76
|
+
provider: provider.name, org: org, box_name: box, version: version.version))
|
77
|
+
format_box_results(provider, @env)
|
78
|
+
0
|
74
79
|
end
|
80
|
+
rescue VagrantCloud::Error => e
|
81
|
+
@env.ui.error(I18n.t("cloud_command.errors.provider.create_fail",
|
82
|
+
provider: provider, org: org, box_name: box, version: version))
|
83
|
+
@env.ui.error(e.message)
|
84
|
+
1
|
75
85
|
end
|
76
86
|
end
|
77
87
|
end
|
@@ -5,6 +5,8 @@ module VagrantPlugins
|
|
5
5
|
module ProviderCommand
|
6
6
|
module Command
|
7
7
|
class Delete < Vagrant.plugin("2", :command)
|
8
|
+
include Util
|
9
|
+
|
8
10
|
def execute
|
9
11
|
options = {}
|
10
12
|
|
@@ -15,53 +17,61 @@ module VagrantPlugins
|
|
15
17
|
o.separator ""
|
16
18
|
o.separator "Options:"
|
17
19
|
o.separator ""
|
18
|
-
|
19
|
-
|
20
|
-
options[:username] = u
|
20
|
+
o.on("-f", "--[no-]force", "Force deletion of box version provider without confirmation") do |f|
|
21
|
+
options[:force] = f
|
21
22
|
end
|
22
23
|
end
|
23
24
|
|
24
25
|
# Parse the options
|
25
26
|
argv = parse_options(opts)
|
26
27
|
return if !argv
|
27
|
-
if argv.
|
28
|
+
if argv.count != 3
|
28
29
|
raise Vagrant::Errors::CLIInvalidUsage,
|
29
30
|
help: opts.help.chomp
|
30
31
|
end
|
31
32
|
|
32
|
-
|
33
|
-
org = box[0]
|
34
|
-
box_name = box[1]
|
33
|
+
org, box_name = argv.first.split('/', 2)
|
35
34
|
provider_name = argv[1]
|
36
35
|
version = argv[2]
|
37
36
|
|
38
|
-
@env.ui.warn(I18n.t("cloud_command.provider.delete_warn",
|
39
|
-
|
40
|
-
return 1 if cont.strip.downcase != "y"
|
41
|
-
|
42
|
-
@client = VagrantPlugins::CloudCommand::Util.client_login(@env, options[:username])
|
37
|
+
@env.ui.warn(I18n.t("cloud_command.provider.delete_warn",
|
38
|
+
provider: provider_name, version:version, box: argv.first))
|
43
39
|
|
44
|
-
|
45
|
-
|
40
|
+
if !options[:force]
|
41
|
+
cont = @env.ui.ask(I18n.t("cloud_command.continue"))
|
42
|
+
return 1 if cont.strip.downcase != "y"
|
43
|
+
end
|
46
44
|
|
47
|
-
|
48
|
-
org = options[:username] if options[:username]
|
45
|
+
@client = client_login(@env)
|
49
46
|
|
50
|
-
|
51
|
-
|
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)
|
47
|
+
delete_provider(org, box_name, version, provider_name, @client.token, options)
|
48
|
+
end
|
55
49
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
50
|
+
# Delete a provider for the box version
|
51
|
+
#
|
52
|
+
# @param [String] org Organization name
|
53
|
+
# @param [String] box Box name
|
54
|
+
# @param [String] version Box version
|
55
|
+
# @param [String] provider Provider name
|
56
|
+
# @param [String] access_token User Vagrant Cloud access token
|
57
|
+
# @param [Hash] options Currently unused
|
58
|
+
# @return [Integer]
|
59
|
+
def delete_provider(org, box, version, provider, access_token, options={})
|
60
|
+
account = VagrantCloud::Account.new(
|
61
|
+
custom_server: api_server_url,
|
62
|
+
access_token: access_token
|
63
|
+
)
|
64
|
+
with_provider(account: account, org: org, box: box, version: version, provider: provider) do |p|
|
65
|
+
p.delete
|
66
|
+
@env.ui.error(I18n.t("cloud_command.provider.delete_success",
|
67
|
+
provider: provider, org: org, box_name: box, version: version))
|
68
|
+
0
|
64
69
|
end
|
70
|
+
rescue VagrantCloud::Error => e
|
71
|
+
@env.ui.error(I18n.t("cloud_command.errors.provider.delete_fail",
|
72
|
+
provider: provider, org: org, box_name: box, version: version))
|
73
|
+
@env.ui.error(e)
|
74
|
+
1
|
65
75
|
end
|
66
76
|
end
|
67
77
|
end
|
@@ -5,20 +5,19 @@ module VagrantPlugins
|
|
5
5
|
module ProviderCommand
|
6
6
|
module Command
|
7
7
|
class Update < Vagrant.plugin("2", :command)
|
8
|
+
include Util
|
9
|
+
|
8
10
|
def execute
|
9
11
|
options = {}
|
10
12
|
|
11
13
|
opts = OptionParser.new do |o|
|
12
|
-
o.banner = "Usage: vagrant cloud provider update [options] organization/box-name provider-name version url"
|
14
|
+
o.banner = "Usage: vagrant cloud provider update [options] organization/box-name provider-name version [url]"
|
13
15
|
o.separator ""
|
14
16
|
o.separator "Updates a provider entry on Vagrant Cloud"
|
15
17
|
o.separator ""
|
16
18
|
o.separator "Options:"
|
17
19
|
o.separator ""
|
18
20
|
|
19
|
-
o.on("-u", "--username USERNAME_OR_EMAIL", String, "Vagrant Cloud username or email address") do |u|
|
20
|
-
options[:username] = u
|
21
|
-
end
|
22
21
|
o.on("-c", "--checksum CHECKSUM_VALUE", String, "Checksum of the box for this provider. --checksum-type option is required.") do |c|
|
23
22
|
options[:checksum] = c
|
24
23
|
end
|
@@ -30,48 +29,58 @@ module VagrantPlugins
|
|
30
29
|
# Parse the options
|
31
30
|
argv = parse_options(opts)
|
32
31
|
return if !argv
|
33
|
-
if argv.
|
32
|
+
if argv.count < 3 || argv.count > 4
|
34
33
|
raise Vagrant::Errors::CLIInvalidUsage,
|
35
34
|
help: opts.help.chomp
|
36
35
|
end
|
37
36
|
|
38
|
-
@client =
|
37
|
+
@client = client_login(@env)
|
39
38
|
|
40
|
-
|
41
|
-
org = box[0]
|
42
|
-
box_name = box[1]
|
39
|
+
org, box_name = argv.first.split('/', 2)
|
43
40
|
provider_name = argv[1]
|
44
41
|
version = argv[2]
|
45
42
|
url = argv[3]
|
46
43
|
|
47
|
-
update_provider(org, box_name,
|
44
|
+
update_provider(org, box_name, version, provider_name, url, @client.token, options)
|
48
45
|
end
|
49
46
|
|
50
|
-
|
47
|
+
# Update a provider for the box version
|
48
|
+
#
|
49
|
+
# @param [String] org Organization name
|
50
|
+
# @param [String] box Box name
|
51
|
+
# @param [String] version Box version
|
52
|
+
# @param [String] provider Provider name
|
53
|
+
# @param [String] access_token User Vagrant Cloud access token
|
54
|
+
# @param [Hash] options
|
55
|
+
# @option options [String] :checksum Checksum of the box asset
|
56
|
+
# @option options [String] :checksum_type Type of the checksum
|
57
|
+
# @return [Integer]
|
58
|
+
def update_provider(org, box, version, provider, url, access_token, options)
|
51
59
|
if !url
|
52
60
|
@env.ui.warn(I18n.t("cloud_command.upload.no_url"))
|
53
61
|
end
|
62
|
+
account = VagrantCloud::Account.new(
|
63
|
+
custom_server: api_server_url,
|
64
|
+
access_token: access_token
|
65
|
+
)
|
54
66
|
|
55
|
-
org
|
67
|
+
with_provider(account: account, org: org, box: box, version: version, provider: provider) do |p|
|
68
|
+
p.checksum = options[:checksum] if options.key?(:checksum)
|
69
|
+
p.checksum_type = options[:checksum_type] if options.key?(:checksum_type)
|
70
|
+
p.url = url if !url.nil?
|
71
|
+
p.save
|
56
72
|
|
57
|
-
|
58
|
-
|
59
|
-
box = VagrantCloud::Box.new(account, box_name, nil, nil, nil, access_token)
|
60
|
-
cloud_version = VagrantCloud::Version.new(box, version, nil, nil, access_token)
|
61
|
-
provider = VagrantCloud::Provider.new(cloud_version, provider_name, nil, url, org, box_name,
|
62
|
-
access_token, nil, options[:checksum], options[:checksum_type])
|
73
|
+
@env.ui.success(I18n.t("cloud_command.provider.update_success",
|
74
|
+
provider: provider, org: org, box_name: box, version: version))
|
63
75
|
|
64
|
-
|
65
|
-
|
66
|
-
@env.ui.success(I18n.t("cloud_command.provider.update_success", provider:provider_name, org: org, box_name: box_name, version: version))
|
67
|
-
success = success.delete_if{|_, v|v.nil?}
|
68
|
-
VagrantPlugins::CloudCommand::Util.format_box_results(success, @env)
|
69
|
-
return 0
|
70
|
-
rescue VagrantCloud::ClientError => e
|
71
|
-
@env.ui.error(I18n.t("cloud_command.errors.provider.update_fail", provider:provider_name, org: org, box_name: box_name, version: version))
|
72
|
-
@env.ui.error(e)
|
73
|
-
return 1
|
76
|
+
format_box_results(p, @env)
|
77
|
+
0
|
74
78
|
end
|
79
|
+
rescue VagrantCloud::Error => e
|
80
|
+
@env.ui.error(I18n.t("cloud_command.errors.provider.update_fail",
|
81
|
+
provider: provider, org: org, box_name: box, version: version))
|
82
|
+
@env.ui.error(e.message)
|
83
|
+
1
|
75
84
|
end
|
76
85
|
end
|
77
86
|
end
|
@@ -6,8 +6,10 @@ module VagrantPlugins
|
|
6
6
|
module ProviderCommand
|
7
7
|
module Command
|
8
8
|
class Upload < Vagrant.plugin("2", :command)
|
9
|
+
include Util
|
10
|
+
|
9
11
|
def execute
|
10
|
-
options = {}
|
12
|
+
options = {direct: true}
|
11
13
|
|
12
14
|
opts = OptionParser.new do |o|
|
13
15
|
o.banner = "Usage: vagrant cloud provider upload [options] organization/box-name provider-name version box-file"
|
@@ -16,57 +18,65 @@ module VagrantPlugins
|
|
16
18
|
o.separator ""
|
17
19
|
o.separator "Options:"
|
18
20
|
o.separator ""
|
19
|
-
|
20
|
-
|
21
|
-
options[:username] = u
|
21
|
+
o.on("-D", "--[no-]direct", "Upload asset directly to backend storage") do |d|
|
22
|
+
options[:direct] = d
|
22
23
|
end
|
23
24
|
end
|
24
25
|
|
25
26
|
# Parse the options
|
26
27
|
argv = parse_options(opts)
|
27
28
|
return if !argv
|
28
|
-
if argv.
|
29
|
+
if argv.count != 4
|
29
30
|
raise Vagrant::Errors::CLIInvalidUsage,
|
30
31
|
help: opts.help.chomp
|
31
32
|
end
|
32
33
|
|
33
|
-
@client =
|
34
|
+
@client = client_login(@env)
|
34
35
|
|
35
|
-
|
36
|
-
org = box[0]
|
37
|
-
box_name = box[1]
|
36
|
+
org, box_name = argv.first.split('/', 2)
|
38
37
|
provider_name = argv[1]
|
39
38
|
version = argv[2]
|
40
|
-
file = argv[3]
|
39
|
+
file = File.expand_path(argv[3])
|
41
40
|
|
42
|
-
upload_provider(org, box_name,
|
41
|
+
upload_provider(org, box_name, version, provider_name, file, @client.token, options)
|
43
42
|
end
|
44
43
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
44
|
+
# Upload an asset for a box version provider
|
45
|
+
#
|
46
|
+
# @param [String] org Organization name
|
47
|
+
# @param [String] box Box name
|
48
|
+
# @param [String] version Box version
|
49
|
+
# @param [String] provider Provider name
|
50
|
+
# @param [String] file Path to asset
|
51
|
+
# @param [String] access_token User Vagrant Cloud access token
|
52
|
+
# @param [Hash] options
|
53
|
+
# @option options [Boolean] :direct Upload directly to backend storage
|
54
|
+
# @return [Integer]
|
55
|
+
def upload_provider(org, box, version, provider, file, access_token, options)
|
56
|
+
account = VagrantCloud::Account.new(
|
57
|
+
custom_server: api_server_url,
|
58
|
+
access_token: access_token
|
59
|
+
)
|
56
60
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
61
|
+
with_provider(account: account, org: org, box: box, version: version, provider: provider) do |p|
|
62
|
+
p.upload(direct: options[:direct]) do |upload_url|
|
63
|
+
m = options[:direct] ? :put : :put
|
64
|
+
uploader = Vagrant::Util::Uploader.new(upload_url, file, ui: @env.ui, method: m)
|
65
|
+
ui = Vagrant::UI::Prefixed.new(@env.ui, "cloud")
|
66
|
+
ui.output(I18n.t("cloud_command.provider.upload",
|
67
|
+
org: org, box_name: box, version: version, provider: provider))
|
68
|
+
ui.info("Upload File: #{file}")
|
69
|
+
uploader.upload!
|
70
|
+
ui.success(I18n.t("cloud_command.provider.upload_success",
|
71
|
+
org: org, box_name: box, version: version, provider: provider))
|
72
|
+
end
|
73
|
+
0
|
69
74
|
end
|
75
|
+
rescue Vagrant::Errors::UploaderError, VagrantCloud::Error => e
|
76
|
+
@env.ui.error(I18n.t("cloud_command.errors.provider.upload_fail",
|
77
|
+
provider: provider, org: org, box_name: box, version: version))
|
78
|
+
@env.ui.error(e.message)
|
79
|
+
1
|
70
80
|
end
|
71
81
|
end
|
72
82
|
end
|