vagrant-unbundled 2.2.7.0 → 2.2.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.hashibot.hcl +2 -0
- data/CHANGELOG.md +228 -0
- data/Gemfile +1 -1
- data/README.md +9 -51
- data/RELEASE.md +1 -1
- data/bin/vagrant +50 -1
- data/contrib/README.md +1 -0
- 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 +28 -5
- data/lib/vagrant/action.rb +7 -0
- data/lib/vagrant/action/builder.rb +184 -38
- data/lib/vagrant/action/builtin/box_add.rb +24 -8
- data/lib/vagrant/action/builtin/box_check_outdated.rb +2 -1
- 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 +14 -1
- 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 +1 -0
- 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/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 -31
- data/lib/vagrant/box.rb +11 -4
- data/lib/vagrant/box_collection.rb +1 -1
- data/lib/vagrant/bundler.rb +310 -61
- data/lib/vagrant/cli.rb +4 -2
- data/lib/vagrant/environment.rb +1 -0
- data/lib/vagrant/errors.rb +69 -1
- data/lib/vagrant/machine.rb +64 -11
- data/lib/vagrant/machine_index.rb +28 -1
- data/lib/vagrant/patches/net-ssh.rb +186 -0
- data/lib/vagrant/plugin/manager.rb +45 -16
- 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 +43 -2
- data/lib/vagrant/util.rb +2 -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 +12 -8
- data/lib/vagrant/util/directory.rb +19 -0
- data/lib/vagrant/util/downloader.rb +10 -5
- 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 -19
- 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 +28 -0
- data/lib/vagrant/util/platform.rb +10 -2
- data/lib/vagrant/util/powershell.rb +31 -15
- 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 +2 -2
- 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/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_authentication.rb +60 -31
- data/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb +64 -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 +55 -79
- data/plugins/commands/cloud/list.rb +3 -4
- data/plugins/commands/cloud/locales/en.yml +15 -11
- 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 +53 -33
- data/plugins/commands/cloud/publish.rb +193 -106
- data/plugins/commands/cloud/search.rb +34 -21
- data/plugins/commands/cloud/util.rb +273 -161
- 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 +7 -7
- data/plugins/commands/login/plugin.rb +0 -13
- 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/configure_networks.rb +1 -1
- 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 +33 -10
- 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/fedora/guest.rb +4 -4
- 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 +74 -0
- data/plugins/guests/linux/cap/reboot.rb +36 -7
- data/plugins/guests/linux/plugin.rb +10 -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/openwrt/cap/change_host_name.rb +19 -0
- data/plugins/guests/openwrt/cap/halt.rb +16 -0
- data/plugins/guests/openwrt/cap/insert_public_key.rb +20 -0
- data/plugins/guests/openwrt/cap/remove_public_key.rb +22 -0
- data/plugins/guests/openwrt/cap/rsync.rb +35 -0
- data/plugins/guests/openwrt/guest.rb +23 -0
- data/plugins/guests/openwrt/plugin.rb +61 -0
- 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/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/plugin.rb +10 -0
- data/plugins/hosts/linux/cap/fs_iso.rb +49 -0
- data/plugins/hosts/linux/cap/nfs.rb +1 -0
- 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 +67 -14
- data/plugins/kernel_v2/config/ssh_connect.rb +24 -0
- data/plugins/kernel_v2/config/vm.rb +155 -21
- data/plugins/kernel_v2/config/vm_provisioner.rb +13 -2
- 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 +58 -7
- 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 +13 -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/network.rb +12 -5
- 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 +40 -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 +16 -2
- data/plugins/providers/virtualbox/driver/version_5_0.rb +217 -2
- data/plugins/providers/virtualbox/driver/version_6_1.rb +23 -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 +42 -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/freebsd/ansible_install.rb +1 -1
- 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/bootstrap-salt.sh +7 -4
- 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.min.erb +3 -0
- 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/guests/nixos/network.erb +5 -6
- data/templates/locales/en.yml +221 -5
- data/templates/locales/providers_docker.yml +4 -0
- data/templates/nfs/exports_darwin.erb +1 -1
- data/vagrant.gemspec +14 -20
- data/version.txt +1 -1
- metadata +5092 -8978
- 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
@@ -1,23 +1,17 @@
|
|
1
|
+
require_relative '../../linux/cap/change_host_name'
|
2
|
+
|
1
3
|
module VagrantPlugins
|
2
4
|
module GuestPhoton
|
3
5
|
module Cap
|
4
6
|
class ChangeHostName
|
5
|
-
|
6
|
-
comm = machine.communicate
|
7
|
-
|
8
|
-
if !comm.test("hostname -f | grep '^#{name}$'", sudo: false)
|
9
|
-
basename = name.split(".", 2)[0]
|
10
|
-
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
11
|
-
# Set the hostname
|
12
|
-
echo '#{name}' > /etc/hostname
|
13
|
-
hostname '#{name}'
|
7
|
+
extend VagrantPlugins::GuestLinux::Cap::ChangeHostName
|
14
8
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
9
|
+
def self.change_name_command(name)
|
10
|
+
return <<-EOH.gsub(/^ {14}/, "")
|
11
|
+
# Set the hostname
|
12
|
+
echo '#{name}' > /etc/hostname
|
13
|
+
hostname '#{name}'
|
14
|
+
EOH
|
21
15
|
end
|
22
16
|
end
|
23
17
|
end
|
@@ -1,27 +1,21 @@
|
|
1
|
+
require_relative '../../linux/cap/change_host_name'
|
2
|
+
|
1
3
|
module VagrantPlugins
|
2
4
|
module GuestPld
|
3
5
|
module Cap
|
4
6
|
class ChangeHostName
|
5
|
-
|
6
|
-
comm = machine.communicate
|
7
|
-
|
8
|
-
if !comm.test("hostname -f | grep '^#{name}$'", sudo: false)
|
9
|
-
basename = name.split(".", 2)[0]
|
10
|
-
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
11
|
-
hostname '#{name}'
|
12
|
-
sed -i 's/\\(HOSTNAME=\\).*/\\1#{name}/' /etc/sysconfig/network
|
7
|
+
extend VagrantPlugins::GuestLinux::Cap::ChangeHostName
|
13
8
|
|
14
|
-
|
9
|
+
def self.change_name_command(name)
|
10
|
+
return <<-EOH.gsub(/^ {14}/, "")
|
11
|
+
hostname '#{name}'
|
12
|
+
sed -i 's/\\(HOSTNAME=\\).*/\\1#{name}/' /etc/sysconfig/network
|
15
13
|
|
16
|
-
|
17
|
-
grep -w '#{name}' /etc/hosts || {
|
18
|
-
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
|
19
|
-
}
|
14
|
+
sed -i 's/\\(DHCP_HOSTNAME=\\).*/\\1\"#{name}\"/' /etc/sysconfig/interfaces/ifcfg-*
|
20
15
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
end
|
16
|
+
# Restart networking
|
17
|
+
service network restart
|
18
|
+
EOH
|
25
19
|
end
|
26
20
|
end
|
27
21
|
end
|
@@ -1,9 +1,12 @@
|
|
1
|
+
require 'vagrant/util/guest_hosts'
|
2
|
+
|
1
3
|
module VagrantPlugins
|
2
4
|
module GuestRedHat
|
3
5
|
module Cap
|
4
6
|
class ChangeHostName
|
5
7
|
|
6
8
|
extend Vagrant::Util::GuestInspection::Linux
|
9
|
+
extend Vagrant::Util::GuestHosts::Linux
|
7
10
|
|
8
11
|
def self.change_host_name(machine, name)
|
9
12
|
comm = machine.communicate
|
@@ -12,14 +15,13 @@ module VagrantPlugins
|
|
12
15
|
basename = name.split('.', 2)[0]
|
13
16
|
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
14
17
|
# Update sysconfig
|
15
|
-
|
18
|
+
if [ -f /etc/sysconfig/network ]; then
|
19
|
+
sed -i 's/\\(HOSTNAME=\\).*/\\1#{name}/' /etc/sysconfig/network
|
20
|
+
fi
|
16
21
|
# Update DNS
|
17
|
-
sed -i 's/\\(DHCP_HOSTNAME=\\).*/\\1\"#{basename}\"/'
|
22
|
+
find /etc/sysconfig/network-scripts -maxdepth 1 -type f -name 'ifcfg-*' | xargs -r sed -i 's/\\(DHCP_HOSTNAME=\\).*/\\1\"#{basename}\"/'
|
18
23
|
# Set the hostname - use hostnamectl if available
|
19
24
|
echo '#{name}' > /etc/hostname
|
20
|
-
grep -w '#{name}' /etc/hosts || {
|
21
|
-
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
|
22
|
-
}
|
23
25
|
EOH
|
24
26
|
|
25
27
|
if hostnamectl?(comm)
|
@@ -40,6 +42,13 @@ module VagrantPlugins
|
|
40
42
|
end
|
41
43
|
comm.sudo(restart_command)
|
42
44
|
end
|
45
|
+
|
46
|
+
network_with_hostname = machine.config.vm.networks.map {|_, c| c if c[:hostname] }.compact[0]
|
47
|
+
if network_with_hostname
|
48
|
+
replace_host(comm, name, network_with_hostname[:ip])
|
49
|
+
else
|
50
|
+
add_hostname_to_loopback_interface(comm, name)
|
51
|
+
end
|
43
52
|
end
|
44
53
|
end
|
45
54
|
end
|
@@ -10,8 +10,10 @@ module VagrantPlugins
|
|
10
10
|
end
|
11
11
|
|
12
12
|
# Detect various flavors we care about
|
13
|
-
if output =~ /(
|
13
|
+
if output =~ /(Red Hat Enterprise|Scientific|Cloud|Virtuozzo)\s*Linux( .+)? release 7/i
|
14
14
|
return :rhel_7
|
15
|
+
elsif output =~ /(Red Hat Enterprise|Scientific|Cloud|Virtuozzo)\s*Linux( .+)? release 8/i
|
16
|
+
return :rhel_8
|
15
17
|
else
|
16
18
|
return :rhel
|
17
19
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module VagrantPlugins
|
2
|
+
module GuestRedHat
|
3
|
+
module Cap
|
4
|
+
class SMB
|
5
|
+
def self.smb_install(machine)
|
6
|
+
comm = machine.communicate
|
7
|
+
if !comm.test("test -f /sbin/mount.cifs")
|
8
|
+
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
9
|
+
if command -v dnf; then
|
10
|
+
dnf -y install cifs-utils
|
11
|
+
else
|
12
|
+
yum -y install cifs-utils
|
13
|
+
fi
|
14
|
+
EOH
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -1,25 +1,19 @@
|
|
1
|
+
require_relative '../../linux/cap/change_host_name'
|
2
|
+
|
1
3
|
module VagrantPlugins
|
2
4
|
module GuestSlackware
|
3
5
|
module Cap
|
4
6
|
class ChangeHostName
|
5
|
-
|
6
|
-
comm = machine.communicate
|
7
|
-
|
8
|
-
if !comm.test("hostname -f | grep '^#{name}$'", sudo: false)
|
9
|
-
basename = name.split(".", 2)[0]
|
10
|
-
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
11
|
-
# Set the hostname
|
12
|
-
chmod o+w /etc/hostname
|
13
|
-
echo '#{name}' > /etc/hostname
|
14
|
-
chmod o-w /etc/hostname
|
15
|
-
hostname -F /etc/hostname
|
7
|
+
extend VagrantPlugins::GuestLinux::Cap::ChangeHostName
|
16
8
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
9
|
+
def self.change_name_command(name)
|
10
|
+
return <<-EOH.gsub(/^ {14}/, "")
|
11
|
+
# Set the hostname
|
12
|
+
chmod o+w /etc/hostname
|
13
|
+
echo '#{name}' > /etc/hostname
|
14
|
+
chmod o-w /etc/hostname
|
15
|
+
hostname -F /etc/hostname
|
16
|
+
EOH
|
23
17
|
end
|
24
18
|
end
|
25
19
|
end
|
@@ -29,6 +29,11 @@ module VagrantPlugins
|
|
29
29
|
require_relative "cap/configure_networks"
|
30
30
|
Cap::ConfigureNetworks
|
31
31
|
end
|
32
|
+
|
33
|
+
guest_capability(:solaris11, :shell_expand_guest_path) do
|
34
|
+
require_relative "../linux/cap/shell_expand_guest_path"
|
35
|
+
VagrantPlugins::GuestLinux::Cap::ShellExpandGuestPath
|
36
|
+
end
|
32
37
|
end
|
33
38
|
end
|
34
39
|
end
|
@@ -1,21 +1,43 @@
|
|
1
|
+
require 'vagrant/util/guest_hosts'
|
2
|
+
require 'vagrant/util/guest_inspection'
|
3
|
+
|
1
4
|
module VagrantPlugins
|
2
5
|
module GuestSUSE
|
3
6
|
module Cap
|
4
7
|
class ChangeHostName
|
8
|
+
|
9
|
+
extend Vagrant::Util::GuestInspection::Linux
|
10
|
+
extend Vagrant::Util::GuestHosts::Linux
|
11
|
+
|
5
12
|
def self.change_host_name(machine, name)
|
6
13
|
comm = machine.communicate
|
7
|
-
|
8
14
|
basename = name.split(".", 2)[0]
|
9
|
-
if !comm.test('test "$(hostnamectl --static status)" = "#{basename}"', sudo: false)
|
10
|
-
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
11
|
-
hostnamectl set-hostname '#{basename}'
|
12
15
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
16
|
+
network_with_hostname = machine.config.vm.networks.map {|_, c| c if c[:hostname] }.compact[0]
|
17
|
+
if network_with_hostname
|
18
|
+
replace_host(comm, name, network_with_hostname[:ip])
|
19
|
+
else
|
20
|
+
add_hostname_to_loopback_interface(comm, name)
|
18
21
|
end
|
22
|
+
|
23
|
+
if hostnamectl?(comm)
|
24
|
+
if !comm.test("test \"$(hostnamectl --static status)\" = \"#{basename}\"", sudo: false)
|
25
|
+
cmd = <<-EOH.gsub(/^ {14}/, "")
|
26
|
+
hostnamectl set-hostname '#{basename}'
|
27
|
+
echo #{name} > /etc/HOSTNAME
|
28
|
+
EOH
|
29
|
+
comm.sudo(cmd)
|
30
|
+
end
|
31
|
+
else
|
32
|
+
if !comm.test("hostname -f | grep '^#{name}$'", sudo: false)
|
33
|
+
cmd = <<-EOH.gsub(/^ {14}/, "")
|
34
|
+
echo #{name} > /etc/HOSTNAME
|
35
|
+
hostname '#{basename}'
|
36
|
+
EOH
|
37
|
+
comm.sudo(cmd)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
19
41
|
end
|
20
42
|
end
|
21
43
|
end
|
@@ -37,7 +37,7 @@ module VagrantPlugins
|
|
37
37
|
|
38
38
|
# Ensure the user's ssh directory exists
|
39
39
|
remote_ssh_dir = "#{home_dir}\\.ssh"
|
40
|
-
comm.execute("
|
40
|
+
comm.execute("New-Item -Path '#{remote_ssh_dir}' -ItemType directory -Force", shell: "powershell")
|
41
41
|
remote_upload_path = "#{temp_dir}\\vagrant-insert-pubkey-#{Time.now.to_i}"
|
42
42
|
remote_authkeys_path = "#{remote_ssh_dir}\\authorized_keys"
|
43
43
|
|
@@ -55,7 +55,7 @@ module VagrantPlugins
|
|
55
55
|
File.write(keys_file.path, keys.join("\r\n") + "\r\n")
|
56
56
|
comm.upload(keys_file.path, remote_upload_path)
|
57
57
|
keys_file.delete
|
58
|
-
comm.execute
|
58
|
+
comm.execute(<<-EOC.gsub(/^\s*/, ""), shell: "powershell")
|
59
59
|
Set-Acl "#{remote_upload_path}" (Get-Acl "#{remote_authkeys_path}")
|
60
60
|
Move-Item -Force "#{remote_upload_path}" "#{remote_authkeys_path}"
|
61
61
|
EOC
|
@@ -67,7 +67,7 @@ module VagrantPlugins
|
|
67
67
|
# @return [Hash] {:temp, :home}
|
68
68
|
def self.fetch_guest_paths(communicator)
|
69
69
|
output = ""
|
70
|
-
communicator.execute("
|
70
|
+
communicator.execute("Write-Output $env:TEMP\nWrite-Output $env:USERPROFILE", shell: "powershell") do |type, data|
|
71
71
|
if type == :stdout
|
72
72
|
output << data
|
73
73
|
end
|
@@ -4,7 +4,8 @@ module VagrantPlugins
|
|
4
4
|
module GuestWindows
|
5
5
|
module Cap
|
6
6
|
class Reboot
|
7
|
-
|
7
|
+
DEFAULT_MAX_REBOOT_RETRY_DURATION = 120
|
8
|
+
WAIT_SLEEP_TIME = 5
|
8
9
|
|
9
10
|
def self.reboot(machine)
|
10
11
|
@logger = Log4r::Logger.new("vagrant::windows::reboot")
|
@@ -25,14 +26,18 @@ module VagrantPlugins
|
|
25
26
|
|
26
27
|
@logger.debug("Waiting for machine to finish rebooting")
|
27
28
|
|
28
|
-
wait_remaining =
|
29
|
+
wait_remaining = ENV.fetch("VAGRANT_MAX_REBOOT_RETRY_DURATION",
|
30
|
+
DEFAULT_MAX_REBOOT_RETRY_DURATION).to_i
|
31
|
+
wait_remaining = DEFAULT_MAX_REBOOT_RETRY_DURATION if wait_remaining < 1
|
32
|
+
|
29
33
|
begin
|
30
34
|
wait_for_reboot(machine)
|
31
|
-
rescue
|
35
|
+
rescue => err
|
32
36
|
raise if wait_remaining < 0
|
37
|
+
@logger.debug("Exception caught while waiting for reboot: #{err}")
|
33
38
|
@logger.warn("Machine not ready, cannot start reboot yet. Trying again")
|
34
|
-
sleep(
|
35
|
-
wait_remaining -=
|
39
|
+
sleep(WAIT_SLEEP_TIME)
|
40
|
+
wait_remaining -= WAIT_SLEEP_TIME
|
36
41
|
retry
|
37
42
|
end
|
38
43
|
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require "pathname"
|
2
|
+
require "vagrant/util/caps"
|
3
|
+
|
4
|
+
module VagrantPlugins
|
5
|
+
module HostDarwin
|
6
|
+
module Cap
|
7
|
+
class FsISO
|
8
|
+
extend Vagrant::Util::Caps::BuildISO
|
9
|
+
|
10
|
+
@@logger = Log4r::Logger.new("vagrant::host::darwin::fs_iso")
|
11
|
+
|
12
|
+
BUILD_ISO_CMD = "hdiutil".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, "makehybrid", "-hfs", "-iso", "-joliet", "-ov"]
|
37
|
+
iso_command.concat(["-default-volume-name", extra_opts[:volume_id]]) if extra_opts[:volume_id]
|
38
|
+
iso_command << "-o"
|
39
|
+
iso_command << file_destination.to_s
|
40
|
+
iso_command << source_directory.to_s
|
41
|
+
self.build_iso(iso_command, source_directory, file_destination)
|
42
|
+
|
43
|
+
@@logger.info("ISO available at #{file_destination}")
|
44
|
+
file_destination
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -11,6 +11,16 @@ module VagrantPlugins
|
|
11
11
|
Host
|
12
12
|
end
|
13
13
|
|
14
|
+
host_capability("darwin", "isofs_available") do
|
15
|
+
require_relative "cap/fs_iso"
|
16
|
+
Cap::FsISO
|
17
|
+
end
|
18
|
+
|
19
|
+
host_capability("darwin", "create_iso") do
|
20
|
+
require_relative "cap/fs_iso"
|
21
|
+
Cap::FsISO
|
22
|
+
end
|
23
|
+
|
14
24
|
host_capability("darwin", "provider_install_virtualbox") do
|
15
25
|
require_relative "cap/provider_install_virtualbox"
|
16
26
|
Cap::ProviderInstallVirtualBox
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require "pathname"
|
2
|
+
require "vagrant/util/caps"
|
3
|
+
|
4
|
+
module VagrantPlugins
|
5
|
+
module HostLinux
|
6
|
+
module Cap
|
7
|
+
class FsISO
|
8
|
+
extend Vagrant::Util::Caps::BuildISO
|
9
|
+
|
10
|
+
@@logger = Log4r::Logger.new("vagrant::host::linux::fs_iso")
|
11
|
+
|
12
|
+
BUILD_ISO_CMD = "mkisofs".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, "-joliet"]
|
37
|
+
iso_command.concat(["-volid", extra_opts[:volume_id]]) if extra_opts[:volume_id]
|
38
|
+
iso_command << "-o"
|
39
|
+
iso_command << file_destination.to_s
|
40
|
+
iso_command << source_directory.to_s
|
41
|
+
self.build_iso(iso_command, source_directory, file_destination)
|
42
|
+
|
43
|
+
@@logger.info("ISO available at #{file_destination}")
|
44
|
+
file_destination
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|