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
@@ -11,6 +11,16 @@ module VagrantPlugins
|
|
11
11
|
Host
|
12
12
|
end
|
13
13
|
|
14
|
+
host_capability("linux", "isofs_available") do
|
15
|
+
require_relative "cap/fs_iso"
|
16
|
+
Cap::FsISO
|
17
|
+
end
|
18
|
+
|
19
|
+
host_capability("linux", "create_iso") do
|
20
|
+
require_relative "cap/fs_iso"
|
21
|
+
Cap::FsISO
|
22
|
+
end
|
23
|
+
|
14
24
|
host_capability("linux", "nfs_export") do
|
15
25
|
require_relative "cap/nfs"
|
16
26
|
Cap::NFS
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require "pathname"
|
2
|
+
require "vagrant/util/caps"
|
3
|
+
|
4
|
+
module VagrantPlugins
|
5
|
+
module HostWindows
|
6
|
+
module Cap
|
7
|
+
class FsISO
|
8
|
+
extend Vagrant::Util::Caps::BuildISO
|
9
|
+
|
10
|
+
@@logger = Log4r::Logger.new("vagrant::host::windows::fs_iso")
|
11
|
+
|
12
|
+
BUILD_ISO_CMD = "oscdimg".freeze
|
13
|
+
|
14
|
+
# Check that the host has the ability to generate ISOs
|
15
|
+
#
|
16
|
+
# @param [Vagrant::Environment] env
|
17
|
+
# @return [Boolean]
|
18
|
+
def self.isofs_available(env)
|
19
|
+
!!Vagrant::Util::Which.which(BUILD_ISO_CMD)
|
20
|
+
end
|
21
|
+
|
22
|
+
# Generate an ISO file of the given source directory
|
23
|
+
#
|
24
|
+
# @param [Vagrant::Environment] env
|
25
|
+
# @param [String] source_directory Contents of ISO
|
26
|
+
# @param [Map] extra arguments to pass to the iso building command
|
27
|
+
# :file_destination (string) location to store ISO
|
28
|
+
# :volume_id (String) to set the volume name
|
29
|
+
# @return [Pathname] ISO location
|
30
|
+
# @note If file_destination exists, source_directory will be checked
|
31
|
+
# for recent modifications and a new ISO will be generated if requried.
|
32
|
+
def self.create_iso(env, source_directory, extra_opts={})
|
33
|
+
source_directory = Pathname.new(source_directory)
|
34
|
+
file_destination = self.ensure_output_iso(extra_opts[:file_destination])
|
35
|
+
|
36
|
+
iso_command = [BUILD_ISO_CMD, "-j1", "-o", "-m"]
|
37
|
+
iso_command << "-l#{extra_opts[:volume_id]}" if extra_opts[:volume_id]
|
38
|
+
iso_command << source_directory.to_s
|
39
|
+
iso_command << file_destination.to_s
|
40
|
+
self.build_iso(iso_command, source_directory, file_destination)
|
41
|
+
|
42
|
+
@@logger.info("ISO available at #{file_destination}")
|
43
|
+
file_destination
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -11,6 +11,16 @@ module VagrantPlugins
|
|
11
11
|
Host
|
12
12
|
end
|
13
13
|
|
14
|
+
host_capability("windows", "isofs_available") do
|
15
|
+
require_relative "cap/fs_iso"
|
16
|
+
Cap::FsISO
|
17
|
+
end
|
18
|
+
|
19
|
+
host_capability("windows", "create_iso") do
|
20
|
+
require_relative "cap/fs_iso"
|
21
|
+
Cap::FsISO
|
22
|
+
end
|
23
|
+
|
14
24
|
host_capability("windows", "provider_install_virtualbox") do
|
15
25
|
require_relative "cap/provider_install_virtualbox"
|
16
26
|
Cap::ProviderInstallVirtualBox
|
@@ -60,6 +70,11 @@ module VagrantPlugins
|
|
60
70
|
require_relative "cap/ssh"
|
61
71
|
Cap::SSH
|
62
72
|
end
|
73
|
+
|
74
|
+
host_capability("windows", "smb_validate_password") do
|
75
|
+
require_relative "cap/smb"
|
76
|
+
Cap::SMB
|
77
|
+
end
|
63
78
|
end
|
64
79
|
end
|
65
80
|
end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
require "log4r"
|
2
|
+
require "securerandom"
|
3
|
+
|
4
|
+
module VagrantPlugins
|
5
|
+
module Kernel_V2
|
6
|
+
class VagrantConfigCloudInit < Vagrant.plugin("2", :config)
|
7
|
+
#-------------------------------------------------------------------
|
8
|
+
# Config class for cloud-init
|
9
|
+
#-------------------------------------------------------------------
|
10
|
+
|
11
|
+
DEFAULT_CONTENT_TYPES = ["text/cloud-boothook", "text/cloud-config",
|
12
|
+
"text/cloud-config-archive", "text/jinja2",
|
13
|
+
"text/part-handler", "text/upstart-job",
|
14
|
+
"text/x-include-once-url", "text/x-include-url",
|
15
|
+
"text/x-shellscript"].map(&:freeze).freeze
|
16
|
+
|
17
|
+
DEFAULT_CONFIG_TYPE = :user_data
|
18
|
+
|
19
|
+
# @note This value is for internal use only
|
20
|
+
#
|
21
|
+
# @return [String]
|
22
|
+
attr_reader :id
|
23
|
+
|
24
|
+
# The 'type' of data being stored. If not defined,
|
25
|
+
# will default to :user_data
|
26
|
+
#
|
27
|
+
# @return [Symbol]
|
28
|
+
attr_accessor :type
|
29
|
+
|
30
|
+
# @return [String]
|
31
|
+
attr_accessor :content_type
|
32
|
+
|
33
|
+
# The optional mime-part content-disposition filename.
|
34
|
+
#
|
35
|
+
# @return [String]
|
36
|
+
attr_accessor :content_disposition_filename
|
37
|
+
|
38
|
+
# @return [String]
|
39
|
+
attr_accessor :path
|
40
|
+
|
41
|
+
# @return [String]
|
42
|
+
attr_accessor :inline
|
43
|
+
|
44
|
+
def initialize(type=nil)
|
45
|
+
@logger = Log4r::Logger.new("vagrant::config::vm::cloud_init")
|
46
|
+
|
47
|
+
@type = type if type
|
48
|
+
|
49
|
+
@content_type = UNSET_VALUE
|
50
|
+
@content_disposition_filename = UNSET_VALUE
|
51
|
+
@path = UNSET_VALUE
|
52
|
+
@inline = UNSET_VALUE
|
53
|
+
|
54
|
+
# Internal options
|
55
|
+
@id = SecureRandom.uuid
|
56
|
+
end
|
57
|
+
|
58
|
+
def finalize!
|
59
|
+
if !@type
|
60
|
+
@type = DEFAULT_CONFIG_TYPE
|
61
|
+
else
|
62
|
+
@type = @type.to_sym
|
63
|
+
end
|
64
|
+
|
65
|
+
@content_type = nil if @content_type == UNSET_VALUE
|
66
|
+
@content_disposition_filename = nil if @content_disposition_filename == UNSET_VALUE
|
67
|
+
@path = nil if @path == UNSET_VALUE
|
68
|
+
@inline = nil if @inline == UNSET_VALUE
|
69
|
+
end
|
70
|
+
|
71
|
+
# @return [Array] array of strings of error messages from config option validation
|
72
|
+
def validate(machine)
|
73
|
+
errors = _detected_errors
|
74
|
+
|
75
|
+
if @type && @type != DEFAULT_CONFIG_TYPE
|
76
|
+
errors << I18n.t("vagrant.cloud_init.incorrect_type_set",
|
77
|
+
type: @type,
|
78
|
+
machine: machine.name,
|
79
|
+
default_type: DEFAULT_CONFIG_TYPE)
|
80
|
+
end
|
81
|
+
|
82
|
+
if !@content_type
|
83
|
+
errors << I18n.t("vagrant.cloud_init.content_type_not_set",
|
84
|
+
machine: machine.name,
|
85
|
+
accepted_types: DEFAULT_CONTENT_TYPES.join(', '))
|
86
|
+
elsif !DEFAULT_CONTENT_TYPES.include?(@content_type)
|
87
|
+
errors << I18n.t("vagrant.cloud_init.incorrect_content_type",
|
88
|
+
machine: machine.name,
|
89
|
+
content_type: @content_type,
|
90
|
+
accepted_types: DEFAULT_CONTENT_TYPES.join(', '))
|
91
|
+
end
|
92
|
+
|
93
|
+
if @path && @inline
|
94
|
+
errors << I18n.t("vagrant.cloud_init.path_and_inline_set",
|
95
|
+
machine: machine.name)
|
96
|
+
end
|
97
|
+
|
98
|
+
if @path
|
99
|
+
if !@path.is_a?(String)
|
100
|
+
errors << I18n.t("vagrant.cloud_init.incorrect_path_type",
|
101
|
+
machine: machine.name,
|
102
|
+
path: @path,
|
103
|
+
type: @path.class.name)
|
104
|
+
else
|
105
|
+
expanded_path = Pathname.new(@path).expand_path(machine.env.root_path)
|
106
|
+
if !expanded_path.file?
|
107
|
+
errors << I18n.t("vagrant.cloud_init.path_invalid",
|
108
|
+
path: expanded_path,
|
109
|
+
machine: machine.name)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
if @inline
|
115
|
+
if !@inline.is_a?(String)
|
116
|
+
errors << I18n.t("vagrant.cloud_init.incorrect_inline_type",
|
117
|
+
machine: machine.name,
|
118
|
+
type: @inline.class.name)
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
errors
|
123
|
+
end
|
124
|
+
|
125
|
+
# The String representation of this config.
|
126
|
+
#
|
127
|
+
# @return [String]
|
128
|
+
def to_s
|
129
|
+
"cloud_init config"
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
@@ -0,0 +1,221 @@
|
|
1
|
+
require "log4r"
|
2
|
+
require "securerandom"
|
3
|
+
|
4
|
+
require "vagrant/util/numeric"
|
5
|
+
|
6
|
+
module VagrantPlugins
|
7
|
+
module Kernel_V2
|
8
|
+
class VagrantConfigDisk < Vagrant.plugin("2", :config)
|
9
|
+
#-------------------------------------------------------------------
|
10
|
+
# Config class for a given Disk
|
11
|
+
#-------------------------------------------------------------------
|
12
|
+
|
13
|
+
DEFAULT_DISK_TYPES = [:disk, :dvd, :floppy].freeze
|
14
|
+
|
15
|
+
FILE_CHAR_REGEX = /[^-a-z0-9_]/i.freeze
|
16
|
+
|
17
|
+
# Note: This value is for internal use only
|
18
|
+
#
|
19
|
+
# @return [String]
|
20
|
+
attr_reader :id
|
21
|
+
|
22
|
+
# File name for the given disk. Defaults to a generated name that is:
|
23
|
+
#
|
24
|
+
# vagrant_<disk_type>_<short_uuid>
|
25
|
+
#
|
26
|
+
# @return [String]
|
27
|
+
attr_accessor :name
|
28
|
+
|
29
|
+
# Type of disk to create. Defaults to `:disk`
|
30
|
+
#
|
31
|
+
# @return [Symbol]
|
32
|
+
attr_accessor :type
|
33
|
+
|
34
|
+
# Type of disk extension to create. Defaults to `vdi`
|
35
|
+
#
|
36
|
+
# @return [String]
|
37
|
+
attr_accessor :disk_ext
|
38
|
+
|
39
|
+
# Size of disk to create
|
40
|
+
#
|
41
|
+
# @return [Integer,String]
|
42
|
+
attr_accessor :size
|
43
|
+
|
44
|
+
# Path to the location of the disk file (Optional for `:disk` type,
|
45
|
+
# required for `:dvd` type.)
|
46
|
+
#
|
47
|
+
# @return [String]
|
48
|
+
attr_accessor :file
|
49
|
+
|
50
|
+
# Determines if this disk is the _main_ disk, or an attachment.
|
51
|
+
# Defaults to true.
|
52
|
+
#
|
53
|
+
# @return [Boolean]
|
54
|
+
attr_accessor :primary
|
55
|
+
|
56
|
+
# Provider specific options
|
57
|
+
#
|
58
|
+
# @return [Hash]
|
59
|
+
attr_accessor :provider_config
|
60
|
+
|
61
|
+
def initialize(type)
|
62
|
+
@logger = Log4r::Logger.new("vagrant::config::vm::disk")
|
63
|
+
|
64
|
+
@type = type
|
65
|
+
@provider_config = {}
|
66
|
+
|
67
|
+
@name = UNSET_VALUE
|
68
|
+
@provider_type = UNSET_VALUE
|
69
|
+
@size = UNSET_VALUE
|
70
|
+
@primary = UNSET_VALUE
|
71
|
+
@file = UNSET_VALUE
|
72
|
+
@disk_ext = UNSET_VALUE
|
73
|
+
|
74
|
+
# Internal options
|
75
|
+
@id = SecureRandom.uuid
|
76
|
+
end
|
77
|
+
|
78
|
+
# Helper method for storing provider specific config options
|
79
|
+
#
|
80
|
+
# Expected format is:
|
81
|
+
#
|
82
|
+
# - `provider__diskoption: value`
|
83
|
+
# - `{provider: {diskoption: value, otherdiskoption: value, ...}`
|
84
|
+
#
|
85
|
+
# Duplicates will be overriden
|
86
|
+
#
|
87
|
+
# @param [Hash] options
|
88
|
+
def add_provider_config(**options, &block)
|
89
|
+
current = {}
|
90
|
+
options.each do |k,v|
|
91
|
+
opts = k.to_s.split("__")
|
92
|
+
|
93
|
+
if opts.size == 2
|
94
|
+
current[opts[0].to_sym] = {opts[1].to_sym => v}
|
95
|
+
elsif v.is_a?(Hash)
|
96
|
+
current[k] = v
|
97
|
+
else
|
98
|
+
@logger.warn("Disk option '#{k}' found that does not match expected provider disk config schema.")
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
current = @provider_config.merge(current) if !@provider_config.empty?
|
103
|
+
if current
|
104
|
+
@provider_config = current
|
105
|
+
else
|
106
|
+
@provider_config = {}
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
def finalize!
|
111
|
+
# Ensure all config options are set to nil or default value if untouched
|
112
|
+
# by user
|
113
|
+
@type = :disk if @type == UNSET_VALUE
|
114
|
+
@size = nil if @size == UNSET_VALUE
|
115
|
+
@file = nil if @file == UNSET_VALUE
|
116
|
+
|
117
|
+
if @primary == UNSET_VALUE
|
118
|
+
@primary = false
|
119
|
+
end
|
120
|
+
|
121
|
+
if @name.is_a?(String) && @name.match(FILE_CHAR_REGEX)
|
122
|
+
@logger.warn("Vagrant will remove detected invalid characters in '#{@name}' and convert the disk name into something usable for a file")
|
123
|
+
@name.gsub!(FILE_CHAR_REGEX, "_")
|
124
|
+
elsif @name == UNSET_VALUE
|
125
|
+
if @primary
|
126
|
+
@name = "vagrant_primary"
|
127
|
+
else
|
128
|
+
@name = nil
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
# @return [Array] array of strings of error messages from config option validation
|
134
|
+
def validate(machine)
|
135
|
+
errors = _detected_errors
|
136
|
+
# validate type with list of known disk types
|
137
|
+
|
138
|
+
if !DEFAULT_DISK_TYPES.include?(@type)
|
139
|
+
errors << I18n.t("vagrant.config.disk.invalid_type", type: @type,
|
140
|
+
types: DEFAULT_DISK_TYPES.join(', '))
|
141
|
+
end
|
142
|
+
|
143
|
+
if @disk_ext == UNSET_VALUE
|
144
|
+
if machine.provider.capability?(:set_default_disk_ext)
|
145
|
+
@disk_ext = machine.provider.capability(:set_default_disk_ext)
|
146
|
+
else
|
147
|
+
@logger.warn("No provider capability defined to set default 'disk_ext' type. Will use 'vdi' for disk extension.")
|
148
|
+
@disk_ext = "vdi"
|
149
|
+
end
|
150
|
+
elsif @disk_ext
|
151
|
+
@disk_ext = @disk_ext.downcase
|
152
|
+
|
153
|
+
if machine.provider.capability?(:validate_disk_ext)
|
154
|
+
if !machine.provider.capability(:validate_disk_ext, @disk_ext)
|
155
|
+
if machine.provider.capability?(:default_disk_exts)
|
156
|
+
disk_exts = machine.provider.capability(:default_disk_exts).join(', ')
|
157
|
+
else
|
158
|
+
disk_exts = "not found"
|
159
|
+
end
|
160
|
+
errors << I18n.t("vagrant.config.disk.invalid_ext", ext: @disk_ext,
|
161
|
+
name: @name,
|
162
|
+
exts: disk_exts)
|
163
|
+
end
|
164
|
+
else
|
165
|
+
@logger.warn("No provider capability defined to validate 'disk_ext' type")
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
if @size && !@size.is_a?(Integer)
|
170
|
+
if @size.is_a?(String)
|
171
|
+
@size = Vagrant::Util::Numeric.string_to_bytes(@size)
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
if !@size && type == :disk
|
176
|
+
errors << I18n.t("vagrant.config.disk.invalid_size", name: @name, machine: machine.name)
|
177
|
+
end
|
178
|
+
|
179
|
+
if @type == :dvd && !@file
|
180
|
+
errors << I18n.t("vagrant.config.disk.dvd_type_file_required", name: @name, machine: machine.name)
|
181
|
+
end
|
182
|
+
|
183
|
+
if @type == :dvd && @primary
|
184
|
+
errors << I18n.t("vagrant.config.disk.dvd_type_primary", name: @name, machine: machine.name)
|
185
|
+
end
|
186
|
+
|
187
|
+
if @file
|
188
|
+
if !@file.is_a?(String)
|
189
|
+
errors << I18n.t("vagrant.config.disk.invalid_file_type", file: @file, machine: machine.name)
|
190
|
+
elsif !File.file?(@file)
|
191
|
+
errors << I18n.t("vagrant.config.disk.missing_file", file_path: @file,
|
192
|
+
name: @name, machine: machine.name)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
if @provider_config
|
197
|
+
if !@provider_config.empty?
|
198
|
+
if !@provider_config.key?(machine.provider_name)
|
199
|
+
machine.env.ui.warn(I18n.t("vagrant.config.disk.missing_provider",
|
200
|
+
machine: machine.name,
|
201
|
+
provider_name: machine.provider_name))
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
206
|
+
if !@name
|
207
|
+
errors << I18n.t("vagrant.config.disk.no_name_set", machine: machine.name)
|
208
|
+
end
|
209
|
+
|
210
|
+
errors
|
211
|
+
end
|
212
|
+
|
213
|
+
# The String representation of this Disk.
|
214
|
+
#
|
215
|
+
# @return [String]
|
216
|
+
def to_s
|
217
|
+
"disk config"
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|