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
@@ -16,19 +16,23 @@ module VagrantPlugins
|
|
16
16
|
end
|
17
17
|
|
18
18
|
args_array = [pip_args, upgrade_arg, "#{package}#{version_arg}"]
|
19
|
+
args_array.reject! { |a| a.nil? || a.empty? }
|
19
20
|
|
20
|
-
|
21
|
+
pip_install = "pip install"
|
22
|
+
pip_install += " #{args_array.join(' ')}" unless args_array.empty?
|
23
|
+
|
24
|
+
machine.communicate.sudo pip_install
|
21
25
|
end
|
22
26
|
|
23
|
-
def self.get_pip(machine, pip_install_cmd=DEFAULT_PIP_INSTALL_CMD)
|
27
|
+
def self.get_pip(machine, pip_install_cmd = DEFAULT_PIP_INSTALL_CMD)
|
24
28
|
# The objective here is to get pip either by default
|
25
|
-
# or by the argument passed in. The objective is not
|
29
|
+
# or by the argument passed in. The objective is not
|
26
30
|
# to circumvent the pip setup by passing in nothing.
|
27
31
|
# Thus, we stick with the default on an empty string.
|
28
32
|
# Typecast added in the check for safety.
|
29
33
|
|
30
34
|
if pip_install_cmd.to_s.empty?
|
31
|
-
pip_install_cmd=DEFAULT_PIP_INSTALL_CMD
|
35
|
+
pip_install_cmd = DEFAULT_PIP_INSTALL_CMD
|
32
36
|
end
|
33
37
|
|
34
38
|
machine.ui.detail I18n.t("vagrant.provisioners.ansible.installing_pip")
|
@@ -8,7 +8,7 @@ module VagrantPlugins
|
|
8
8
|
module RedHat
|
9
9
|
module AnsibleInstall
|
10
10
|
|
11
|
-
def self.ansible_install(machine, install_mode, ansible_version, pip_args, pip_install_cmd="")
|
11
|
+
def self.ansible_install(machine, install_mode, ansible_version, pip_args, pip_install_cmd = "")
|
12
12
|
case install_mode
|
13
13
|
when :pip
|
14
14
|
pip_setup machine, pip_install_cmd
|
@@ -33,7 +33,7 @@ module VagrantPlugins
|
|
33
33
|
machine.communicate.sudo "#{rpm_package_manager} -y --enablerepo=epel install ansible"
|
34
34
|
end
|
35
35
|
|
36
|
-
def self.pip_setup(machine, pip_install_cmd="")
|
36
|
+
def self.pip_setup(machine, pip_install_cmd = "")
|
37
37
|
rpm_package_manager = Facts::rpm_package_manager(machine)
|
38
38
|
|
39
39
|
machine.communicate.sudo("#{rpm_package_manager} -y install curl gcc libffi-devel openssl-devel python-crypto python-devel python-setuptools")
|
@@ -1,3 +1,4 @@
|
|
1
|
+
require_relative "../../../errors"
|
1
2
|
|
2
3
|
module VagrantPlugins
|
3
4
|
module Ansible
|
@@ -6,7 +7,7 @@ module VagrantPlugins
|
|
6
7
|
module SUSE
|
7
8
|
module AnsibleInstall
|
8
9
|
|
9
|
-
def self.ansible_install(machine, install_mode, ansible_version, pip_args)
|
10
|
+
def self.ansible_install(machine, install_mode, ansible_version, pip_args, pip_install_cmd = "")
|
10
11
|
if install_mode != :default
|
11
12
|
raise Ansible::Errors::AnsiblePipInstallIsNotSupported
|
12
13
|
else
|
@@ -7,7 +7,7 @@ module VagrantPlugins
|
|
7
7
|
module Ubuntu
|
8
8
|
module AnsibleInstall
|
9
9
|
|
10
|
-
def self.ansible_install(machine, install_mode, ansible_version, pip_args, pip_install_cmd="")
|
10
|
+
def self.ansible_install(machine, install_mode, ansible_version, pip_args, pip_install_cmd = "")
|
11
11
|
if install_mode != :default
|
12
12
|
Debian::AnsibleInstall::ansible_install machine, install_mode, ansible_version, pip_args, pip_install_cmd
|
13
13
|
else
|
@@ -21,13 +21,13 @@ module VagrantPlugins
|
|
21
21
|
unless machine.communicate.test("test -x \"$(which add-apt-repository)\"")
|
22
22
|
machine.communicate.sudo """
|
23
23
|
apt-get update -y -qq && \
|
24
|
-
apt-get install -y -qq software-properties-common
|
24
|
+
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq software-properties-common --option \"Dpkg::Options::=--force-confold\"
|
25
25
|
"""
|
26
26
|
end
|
27
27
|
machine.communicate.sudo """
|
28
28
|
add-apt-repository ppa:ansible/ansible -y && \
|
29
29
|
apt-get update -y -qq && \
|
30
|
-
apt-get install -y -qq ansible
|
30
|
+
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq ansible --option \"Dpkg::Options::=--force-confold\"
|
31
31
|
"""
|
32
32
|
end
|
33
33
|
|
@@ -45,6 +45,11 @@ module VagrantPlugins
|
|
45
45
|
Cap::Guest::Arch::AnsibleInstall
|
46
46
|
end
|
47
47
|
|
48
|
+
guest_capability(:alpine, :ansible_install) do
|
49
|
+
require_relative "cap/guest/alpine/ansible_install"
|
50
|
+
Cap::Guest::Alpine::AnsibleInstall
|
51
|
+
end
|
52
|
+
|
48
53
|
guest_capability(:debian, :ansible_install) do
|
49
54
|
require_relative "cap/guest/debian/ansible_install"
|
50
55
|
Cap::Guest::Debian::AnsibleInstall
|
@@ -375,7 +375,7 @@ gathered version stdout version:
|
|
375
375
|
config.compatibility_mode = Ansible::COMPATIBILITY_MODE_V2_0
|
376
376
|
end
|
377
377
|
|
378
|
-
@
|
378
|
+
@logger.info(I18n.t("vagrant.provisioners.ansible.compatibility_mode_warning",
|
379
379
|
compatibility_mode: config.compatibility_mode,
|
380
380
|
ansible_version: @gathered_version) +
|
381
381
|
"\n")
|
@@ -0,0 +1,203 @@
|
|
1
|
+
require 'digest/sha1'
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module ContainerProvisioner
|
5
|
+
class Client
|
6
|
+
def initialize(machine, container_command)
|
7
|
+
@machine = machine
|
8
|
+
@container_command = container_command
|
9
|
+
end
|
10
|
+
|
11
|
+
# Build an image given a path to a Dockerfile
|
12
|
+
#
|
13
|
+
# @param [String] - Path to the Dockerfile to pass to
|
14
|
+
# container build command
|
15
|
+
def build_images(images)
|
16
|
+
@machine.communicate.tap do |comm|
|
17
|
+
images.each do |path, opts|
|
18
|
+
@machine.ui.info(I18n.t("vagrant.container_building_single", path: path))
|
19
|
+
comm.sudo("#{@container_command} build #{opts[:args]} #{path}") do |type, data|
|
20
|
+
handle_comm(type, data)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# Pull image given a list of images
|
27
|
+
#
|
28
|
+
# @param [String] - Image name
|
29
|
+
def pull_images(*images)
|
30
|
+
@machine.communicate.tap do |comm|
|
31
|
+
images.each do |image|
|
32
|
+
@machine.ui.info(I18n.t("vagrant.container_pulling_single", name: image))
|
33
|
+
comm.sudo("#{@container_command} pull #{image}") do |type, data|
|
34
|
+
handle_comm(type, data)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def run(containers)
|
41
|
+
containers.each do |name, config|
|
42
|
+
cids_dir = "/var/lib/vagrant/cids"
|
43
|
+
config[:cidfile] ||= "#{cids_dir}/#{Digest::SHA1.hexdigest name}"
|
44
|
+
|
45
|
+
@machine.ui.info(I18n.t("vagrant.container_running", name: name))
|
46
|
+
@machine.communicate.sudo("mkdir -p #{cids_dir}")
|
47
|
+
run_container({
|
48
|
+
name: name,
|
49
|
+
original_name: name,
|
50
|
+
}.merge(config))
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# Run a OCI container. If the container does not exist it will be
|
55
|
+
# created. If the image is stale it will be recreated and restarted
|
56
|
+
def run_container(config)
|
57
|
+
raise "Container's cidfile was not provided!" if !config[:cidfile]
|
58
|
+
|
59
|
+
id = "$(cat #{config[:cidfile]})"
|
60
|
+
|
61
|
+
if container_exists?(id)
|
62
|
+
if container_args_changed?(config)
|
63
|
+
@machine.ui.info(I18n.t("vagrant.container_restarting_container_args",
|
64
|
+
name: config[:name],
|
65
|
+
))
|
66
|
+
stop_container(id)
|
67
|
+
create_container(config)
|
68
|
+
elsif container_image_changed?(config)
|
69
|
+
@machine.ui.info(I18n.t("vagrant.container_restarting_container_image",
|
70
|
+
name: config[:name],
|
71
|
+
))
|
72
|
+
stop_container(id)
|
73
|
+
create_container(config)
|
74
|
+
else
|
75
|
+
start_container(id)
|
76
|
+
end
|
77
|
+
else
|
78
|
+
create_container(config)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def container_exists?(id)
|
83
|
+
lookup_container(id, true)
|
84
|
+
end
|
85
|
+
|
86
|
+
# Start container
|
87
|
+
#
|
88
|
+
# @param String - Image id
|
89
|
+
def start_container(id)
|
90
|
+
if !container_running?(id)
|
91
|
+
@machine.communicate.sudo("#{@container_command} start #{id}")
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
# Stop and remove container
|
96
|
+
#
|
97
|
+
# @param String - Image id
|
98
|
+
def stop_container(id)
|
99
|
+
@machine.communicate.sudo %[
|
100
|
+
#{@container_command} stop #{id}
|
101
|
+
#{@container_command} rm #{id}
|
102
|
+
]
|
103
|
+
end
|
104
|
+
|
105
|
+
def container_running?(id)
|
106
|
+
lookup_container(id)
|
107
|
+
end
|
108
|
+
|
109
|
+
def container_image_changed?(config)
|
110
|
+
# Returns true if there is a container running with the given :name,
|
111
|
+
# and the container is not using the latest :image.
|
112
|
+
|
113
|
+
# Here, "<cmd> inspect <container>" returns the id of the image
|
114
|
+
# that the container is using. We check that the latest image that
|
115
|
+
# has been built with that name (:image) matches the one that the
|
116
|
+
# container is running.
|
117
|
+
cmd = ("#{@container_command} inspect --format='{{.Image}}' #{config[:name]} |" +
|
118
|
+
" grep $(#{@container_command} images -q #{config[:image]})")
|
119
|
+
return !@machine.communicate.test(cmd)
|
120
|
+
end
|
121
|
+
|
122
|
+
def container_args_changed?(config)
|
123
|
+
path = container_data_path(config)
|
124
|
+
return true if !path.exist?
|
125
|
+
|
126
|
+
args = container_run_args(config)
|
127
|
+
sha = Digest::SHA1.hexdigest(args)
|
128
|
+
return true if path.read.chomp != sha
|
129
|
+
|
130
|
+
return false
|
131
|
+
end
|
132
|
+
|
133
|
+
def create_container(config)
|
134
|
+
args = container_run_args(config)
|
135
|
+
|
136
|
+
@machine.communicate.sudo %[rm -f "#{config[:cidfile]}"]
|
137
|
+
@machine.communicate.sudo %[#{@container_command} run #{args}]
|
138
|
+
|
139
|
+
sha = Digest::SHA1.hexdigest(args)
|
140
|
+
container_data_path(config).open("w+") do |f|
|
141
|
+
f.write(sha)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
# Looks up if a container with a given id exists using the
|
146
|
+
# `ps` command. Returns Boolean
|
147
|
+
#
|
148
|
+
# @param String - Image id
|
149
|
+
def lookup_container(id, list_all = false)
|
150
|
+
container_ps = "sudo #{@container_command} ps -q"
|
151
|
+
container_ps << " -a" if list_all
|
152
|
+
@machine.communicate.tap do |comm|
|
153
|
+
return comm.test("#{container_ps} --no-trunc | grep -wFq #{id}")
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
def container_name(config)
|
158
|
+
name = config[:name]
|
159
|
+
|
160
|
+
# If the name is the automatically assigned name, then
|
161
|
+
# replace the "/" with "-" because "/" is not a valid
|
162
|
+
# character for a container name.
|
163
|
+
name = name.gsub("/", "-").gsub(":", "-") if name == config[:original_name]
|
164
|
+
name
|
165
|
+
end
|
166
|
+
|
167
|
+
# Compiles run arguments to be appended to command string.
|
168
|
+
# Returns String
|
169
|
+
def container_run_args(config)
|
170
|
+
name = container_name(config)
|
171
|
+
|
172
|
+
args = "--cidfile=#{config[:cidfile]} "
|
173
|
+
args << "-d " if config[:daemonize]
|
174
|
+
args << "--name #{name} " if name && config[:auto_assign_name]
|
175
|
+
args << "--restart=#{config[:restart]}" if config[:restart]
|
176
|
+
args << " #{config[:args]}" if config[:args]
|
177
|
+
|
178
|
+
"#{args} #{config[:image]} #{config[:cmd]}".strip
|
179
|
+
end
|
180
|
+
|
181
|
+
def container_data_path(config)
|
182
|
+
name = container_name(config)
|
183
|
+
@machine.data_dir.join("#{@container_command}-#{name}")
|
184
|
+
end
|
185
|
+
|
186
|
+
protected
|
187
|
+
|
188
|
+
# This handles outputting the communication data back to the UI
|
189
|
+
def handle_comm(type, data)
|
190
|
+
if [:stderr, :stdout].include?(type)
|
191
|
+
# Clear out the newline since we add one
|
192
|
+
data = data.chomp
|
193
|
+
return if data.empty?
|
194
|
+
|
195
|
+
options = {}
|
196
|
+
#options[:color] = color if !config.keep_color
|
197
|
+
|
198
|
+
@machine.ui.info(data.chomp, options)
|
199
|
+
end
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'set'
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module ContainerProvisioner
|
5
|
+
class Config < Vagrant.plugin("2", :config)
|
6
|
+
attr_reader :images
|
7
|
+
attr_accessor :post_install_provisioner
|
8
|
+
|
9
|
+
def initialize
|
10
|
+
@images = Set.new
|
11
|
+
@post_install_provisioner = nil
|
12
|
+
|
13
|
+
@__build_images = []
|
14
|
+
@__containers = Hash.new { |h, k| h[k] = {} }
|
15
|
+
end
|
16
|
+
|
17
|
+
# Accessor for internal state.
|
18
|
+
def build_images
|
19
|
+
@__build_images
|
20
|
+
end
|
21
|
+
|
22
|
+
# Accessor for the internal state.
|
23
|
+
def containers
|
24
|
+
@__containers
|
25
|
+
end
|
26
|
+
|
27
|
+
# Defines an image to build using `<cmd> build` within the machine.
|
28
|
+
#
|
29
|
+
# @param [String] path Path to the Dockerfile to pass to
|
30
|
+
# container build command
|
31
|
+
def build_image(path, **opts)
|
32
|
+
@__build_images << [path, opts]
|
33
|
+
end
|
34
|
+
|
35
|
+
def images=(images)
|
36
|
+
@images = Set.new(images)
|
37
|
+
end
|
38
|
+
|
39
|
+
def pull_images(*images)
|
40
|
+
@images += images.map(&:to_s)
|
41
|
+
end
|
42
|
+
|
43
|
+
def post_install_provision(name, **options, &block)
|
44
|
+
proxy = VagrantPlugins::Kernel_V2::VMConfig.new
|
45
|
+
proxy.provision(name, **options, &block)
|
46
|
+
@post_install_provisioner = proxy.provisioners.first
|
47
|
+
end
|
48
|
+
|
49
|
+
def run(name, **options)
|
50
|
+
@__containers[name.to_s] = options.dup
|
51
|
+
end
|
52
|
+
|
53
|
+
def merge(other)
|
54
|
+
super.tap do |result|
|
55
|
+
result.pull_images(*(other.images + self.images))
|
56
|
+
|
57
|
+
build_images = @__build_images.dup
|
58
|
+
build_images += other.build_images
|
59
|
+
result.instance_variable_set(:@__build_images, build_images)
|
60
|
+
|
61
|
+
containers = {}
|
62
|
+
@__containers.each do |name, params|
|
63
|
+
containers[name] = params.dup
|
64
|
+
end
|
65
|
+
other.containers.each do |name, params|
|
66
|
+
containers[name] = @__containers[name].merge(params)
|
67
|
+
end
|
68
|
+
|
69
|
+
result.instance_variable_set(:@__containers, containers)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
def finalize!
|
74
|
+
@__containers.each do |name, params|
|
75
|
+
params[:image] ||= name
|
76
|
+
params[:auto_assign_name] = true if !params.key?(:auto_assign_name)
|
77
|
+
params[:daemonize] = true if !params.key?(:daemonize)
|
78
|
+
params[:restart] = "always" if !params.key?(:restart)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require "vagrant"
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module ContainerProvisioner
|
5
|
+
class Plugin < Vagrant.plugin("2")
|
6
|
+
name "container"
|
7
|
+
description <<-DESC
|
8
|
+
Provides support for provisioning your virtual machines with
|
9
|
+
OCI images and containers.
|
10
|
+
DESC
|
11
|
+
|
12
|
+
config(:container, :provisioner) do
|
13
|
+
require_relative "config"
|
14
|
+
Config
|
15
|
+
end
|
16
|
+
|
17
|
+
provisioner(:container) do
|
18
|
+
require_relative "provisioner"
|
19
|
+
Provisioner
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require_relative "client"
|
2
|
+
require_relative "installer"
|
3
|
+
|
4
|
+
module VagrantPlugins
|
5
|
+
module ContainerProvisioner
|
6
|
+
class Provisioner < Vagrant.plugin("2", :provisioner)
|
7
|
+
def initialize(machine, config, installer = nil, client = nil)
|
8
|
+
super(machine, config)
|
9
|
+
|
10
|
+
@installer = installer || Installer.new(@machine)
|
11
|
+
@client = client || Client.new(@machine, "")
|
12
|
+
@logger = Log4r::Logger.new("vagrant::provisioners::container")
|
13
|
+
end
|
14
|
+
|
15
|
+
def provision
|
16
|
+
# nothing to do
|
17
|
+
end
|
18
|
+
|
19
|
+
def run_provisioner(env)
|
20
|
+
klass = Vagrant.plugin("2").manager.provisioners[env[:provisioner].type]
|
21
|
+
result = klass.new(env[:machine], env[:provisioner].config)
|
22
|
+
result.config.finalize!
|
23
|
+
|
24
|
+
result.provision
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|