tnargav 1.3.5 → 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vagrant/action.rb +45 -0
- data/lib/vagrant/action/builder.rb +174 -0
- data/lib/vagrant/action/builtin/box_add.rb +92 -0
- data/lib/vagrant/action/builtin/call.rb +67 -0
- data/lib/vagrant/action/builtin/config_validate.rb +30 -0
- data/lib/vagrant/action/builtin/confirm.rb +39 -0
- data/lib/vagrant/action/builtin/destroy_confirm.rb +21 -0
- data/lib/vagrant/action/builtin/env_set.rb +24 -0
- data/lib/vagrant/action/builtin/graceful_halt.rb +82 -0
- data/lib/vagrant/action/builtin/handle_box_url.rb +86 -0
- data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +134 -0
- data/lib/vagrant/action/builtin/lock.rb +57 -0
- data/lib/vagrant/action/builtin/mixin_provisioners.rb +43 -0
- data/lib/vagrant/action/builtin/nfs.rb +128 -0
- data/lib/vagrant/action/builtin/provision.rb +79 -0
- data/lib/vagrant/action/builtin/provisioner_cleanup.rb +35 -0
- data/lib/vagrant/action/builtin/set_hostname.rb +27 -0
- data/lib/vagrant/action/builtin/ssh_exec.rb +42 -0
- data/lib/vagrant/action/builtin/ssh_run.rb +43 -0
- data/lib/vagrant/action/builtin/wait_for_communicator.rb +84 -0
- data/lib/vagrant/action/general/package.rb +103 -0
- data/lib/vagrant/action/hook.rb +107 -0
- data/lib/vagrant/action/runner.rb +69 -0
- data/lib/vagrant/action/warden.rb +104 -0
- data/lib/vagrant/batch_action.rb +113 -0
- data/lib/vagrant/box.rb +97 -0
- data/lib/vagrant/box_collection.rb +393 -0
- data/lib/vagrant/cli.rb +74 -0
- data/lib/vagrant/config.rb +61 -0
- data/lib/vagrant/config/loader.rb +222 -0
- data/lib/vagrant/config/v1.rb +9 -0
- data/lib/vagrant/config/v1/dummy_config.rb +13 -0
- data/lib/vagrant/config/v1/loader.rb +105 -0
- data/lib/vagrant/config/v1/root.rb +60 -0
- data/lib/vagrant/config/v2.rb +9 -0
- data/lib/vagrant/config/v2/dummy_config.rb +13 -0
- data/lib/vagrant/config/v2/loader.rb +141 -0
- data/lib/vagrant/config/v2/root.rb +111 -0
- data/lib/vagrant/config/v2/util.rb +21 -0
- data/lib/vagrant/config/version_base.rb +80 -0
- data/lib/vagrant/environment.rb +819 -0
- data/lib/vagrant/errors.rb +614 -0
- data/lib/vagrant/guest.rb +172 -0
- data/lib/vagrant/hosts.rb +28 -0
- data/lib/vagrant/machine.rb +319 -0
- data/lib/vagrant/machine_state.rb +45 -0
- data/lib/vagrant/plugin.rb +6 -0
- data/lib/vagrant/plugin/v1.rb +19 -0
- data/lib/vagrant/plugin/v1/command.rb +169 -0
- data/lib/vagrant/plugin/v1/communicator.rb +98 -0
- data/lib/vagrant/plugin/v1/config.rb +112 -0
- data/lib/vagrant/plugin/v1/errors.rb +15 -0
- data/lib/vagrant/plugin/v1/guest.rb +92 -0
- data/lib/vagrant/plugin/v1/host.rb +66 -0
- data/lib/vagrant/plugin/v1/manager.rb +131 -0
- data/lib/vagrant/plugin/v1/plugin.rb +229 -0
- data/lib/vagrant/plugin/v1/provider.rb +68 -0
- data/lib/vagrant/plugin/v1/provisioner.rb +50 -0
- data/lib/vagrant/plugin/v2.rb +22 -0
- data/lib/vagrant/plugin/v2/command.rb +237 -0
- data/lib/vagrant/plugin/v2/communicator.rb +119 -0
- data/lib/vagrant/plugin/v2/components.rb +47 -0
- data/lib/vagrant/plugin/v2/config.rb +136 -0
- data/lib/vagrant/plugin/v2/errors.rb +15 -0
- data/lib/vagrant/plugin/v2/guest.rb +23 -0
- data/lib/vagrant/plugin/v2/host.rb +66 -0
- data/lib/vagrant/plugin/v2/manager.rb +173 -0
- data/lib/vagrant/plugin/v2/plugin.rb +226 -0
- data/lib/vagrant/plugin/v2/provider.rb +69 -0
- data/lib/vagrant/plugin/v2/provisioner.rb +53 -0
- data/lib/vagrant/registry.rb +78 -0
- data/lib/vagrant/ui.rb +215 -0
- data/lib/vagrant/util.rb +12 -0
- data/lib/vagrant/util/ansi_escape_code_remover.rb +34 -0
- data/lib/vagrant/util/busy.rb +59 -0
- data/lib/vagrant/util/counter.rb +24 -0
- data/lib/vagrant/util/downloader.rb +151 -0
- data/lib/vagrant/util/file_checksum.rb +38 -0
- data/lib/vagrant/util/file_mode.rb +12 -0
- data/lib/vagrant/util/hash_with_indifferent_access.rb +63 -0
- data/lib/vagrant/util/is_port_open.rb +38 -0
- data/lib/vagrant/util/line_ending_helpers.rb +14 -0
- data/lib/vagrant/util/network_ip.rb +28 -0
- data/lib/vagrant/util/platform.rb +101 -0
- data/lib/vagrant/util/retryable.rb +31 -0
- data/lib/vagrant/util/safe_chdir.rb +33 -0
- data/lib/vagrant/util/safe_exec.rb +36 -0
- data/lib/vagrant/util/safe_puts.rb +31 -0
- data/lib/vagrant/util/scoped_hash_override.rb +45 -0
- data/lib/vagrant/util/ssh.rb +155 -0
- data/lib/vagrant/util/stacked_proc_runner.rb +35 -0
- data/lib/vagrant/util/string_block_editor.rb +77 -0
- data/lib/vagrant/util/subprocess.rb +294 -0
- data/lib/vagrant/util/template_renderer.rb +83 -0
- data/lib/vagrant/util/which.rb +43 -0
- data/lib/vagrant/version.rb +6 -0
- data/plugins/commands/box/command/add.rb +51 -0
- data/plugins/commands/box/command/list.rb +41 -0
- data/plugins/commands/box/command/remove.rb +57 -0
- data/plugins/commands/box/command/repackage.rb +43 -0
- data/plugins/commands/box/command/root.rb +75 -0
- data/plugins/commands/box/plugin.rb +15 -0
- data/plugins/commands/destroy/command.rb +36 -0
- data/plugins/commands/destroy/plugin.rb +18 -0
- data/plugins/commands/halt/command.rb +33 -0
- data/plugins/commands/halt/plugin.rb +18 -0
- data/plugins/commands/help/command.rb +12 -0
- data/plugins/commands/help/plugin.rb +17 -0
- data/plugins/commands/init/command.rb +40 -0
- data/plugins/commands/init/plugin.rb +18 -0
- data/plugins/commands/package/command.rb +83 -0
- data/plugins/commands/package/plugin.rb +18 -0
- data/plugins/commands/plugin/action.rb +63 -0
- data/plugins/commands/plugin/action/bundler_check.rb +25 -0
- data/plugins/commands/plugin/action/install_gem.rb +106 -0
- data/plugins/commands/plugin/action/license_plugin.rb +54 -0
- data/plugins/commands/plugin/action/list_plugins.rb +54 -0
- data/plugins/commands/plugin/action/plugin_exists_check.rb +26 -0
- data/plugins/commands/plugin/action/prune_gems.rb +149 -0
- data/plugins/commands/plugin/action/uninstall_plugin.rb +23 -0
- data/plugins/commands/plugin/command/base.rb +22 -0
- data/plugins/commands/plugin/command/install.rb +41 -0
- data/plugins/commands/plugin/command/license.rb +31 -0
- data/plugins/commands/plugin/command/list.rb +28 -0
- data/plugins/commands/plugin/command/mixin_install_opts.rb +30 -0
- data/plugins/commands/plugin/command/root.rb +80 -0
- data/plugins/commands/plugin/command/uninstall.rb +28 -0
- data/plugins/commands/plugin/command/update.rb +41 -0
- data/plugins/commands/plugin/gem_helper.rb +74 -0
- data/plugins/commands/plugin/plugin.rb +22 -0
- data/plugins/commands/plugin/state_file.rb +57 -0
- data/plugins/commands/provision/command.rb +34 -0
- data/plugins/commands/provision/plugin.rb +18 -0
- data/plugins/commands/reload/command.rb +41 -0
- data/plugins/commands/reload/plugin.rb +18 -0
- data/plugins/commands/resume/command.rb +25 -0
- data/plugins/commands/resume/plugin.rb +17 -0
- data/plugins/commands/ssh/command.rb +63 -0
- data/plugins/commands/ssh/plugin.rb +17 -0
- data/plugins/commands/ssh_config/command.rb +49 -0
- data/plugins/commands/ssh_config/plugin.rb +18 -0
- data/plugins/commands/status/command.rb +44 -0
- data/plugins/commands/status/plugin.rb +18 -0
- data/plugins/commands/suspend/command.rb +25 -0
- data/plugins/commands/suspend/plugin.rb +18 -0
- data/plugins/commands/up/command.rb +67 -0
- data/plugins/commands/up/plugin.rb +17 -0
- data/plugins/commands/up/start_mixins.rb +37 -0
- data/plugins/communicators/ssh/communicator.rb +400 -0
- data/plugins/communicators/ssh/plugin.rb +19 -0
- data/plugins/guests/arch/cap/change_host_name.rb +17 -0
- data/plugins/guests/arch/cap/configure_networks.rb +30 -0
- data/plugins/guests/arch/guest.rb +11 -0
- data/plugins/guests/arch/plugin.rb +25 -0
- data/plugins/guests/coreos/cap/change_host_name.rb +15 -0
- data/plugins/guests/coreos/cap/configure_networks.rb +72 -0
- data/plugins/guests/coreos/guest.rb +9 -0
- data/plugins/guests/coreos/plugin.rb +25 -0
- data/plugins/guests/darwin/cap/change_host_name.rb +14 -0
- data/plugins/guests/darwin/cap/configure_networks.rb +52 -0
- data/plugins/guests/darwin/cap/halt.rb +16 -0
- data/plugins/guests/darwin/cap/mount_nfs_folder.rb +25 -0
- data/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +36 -0
- data/plugins/guests/darwin/cap/shell_expand_guest_path.rb +26 -0
- data/plugins/guests/darwin/cap/verify_vmware_hgfs.rb +12 -0
- data/plugins/guests/darwin/guest.rb +15 -0
- data/plugins/guests/darwin/plugin.rb +50 -0
- data/plugins/guests/debian/cap/change_host_name.rb +19 -0
- data/plugins/guests/debian/cap/configure_networks.rb +61 -0
- data/plugins/guests/debian/guest.rb +9 -0
- data/plugins/guests/debian/plugin.rb +25 -0
- data/plugins/guests/fedora/cap/configure_networks.rb +59 -0
- data/plugins/guests/fedora/cap/network_scripts_dir.rb +15 -0
- data/plugins/guests/fedora/guest.rb +11 -0
- data/plugins/guests/fedora/plugin.rb +25 -0
- data/plugins/guests/freebsd/cap/change_host_name.rb +14 -0
- data/plugins/guests/freebsd/cap/configure_networks.rb +39 -0
- data/plugins/guests/freebsd/cap/halt.rb +16 -0
- data/plugins/guests/freebsd/cap/mount_nfs_folder.rb +14 -0
- data/plugins/guests/freebsd/guest.rb +14 -0
- data/plugins/guests/freebsd/plugin.rb +35 -0
- data/plugins/guests/gentoo/cap/change_host_name.rb +17 -0
- data/plugins/guests/gentoo/cap/configure_networks.rb +43 -0
- data/plugins/guests/gentoo/guest.rb +9 -0
- data/plugins/guests/gentoo/plugin.rb +25 -0
- data/plugins/guests/linux/cap/halt.rb +16 -0
- data/plugins/guests/linux/cap/mount_nfs.rb +38 -0
- data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +59 -0
- data/plugins/guests/linux/cap/read_ip_address.rb +17 -0
- data/plugins/guests/linux/cap/shell_expand_guest_path.rb +29 -0
- data/plugins/guests/linux/guest.rb +11 -0
- data/plugins/guests/linux/plugin.rb +40 -0
- data/plugins/guests/omnios/cap/change_host_name.rb +17 -0
- data/plugins/guests/omnios/guest.rb +11 -0
- data/plugins/guests/omnios/plugin.rb +20 -0
- data/plugins/guests/openbsd/cap/change_host_name.rb +14 -0
- data/plugins/guests/openbsd/cap/configure_networks.rb +40 -0
- data/plugins/guests/openbsd/cap/halt.rb +16 -0
- data/plugins/guests/openbsd/cap/mount_nfs_folder.rb +14 -0
- data/plugins/guests/openbsd/guest.rb +11 -0
- data/plugins/guests/openbsd/plugin.rb +35 -0
- data/plugins/guests/pld/cap/network_scripts_dir.rb +11 -0
- data/plugins/guests/pld/guest.rb +11 -0
- data/plugins/guests/pld/plugin.rb +20 -0
- data/plugins/guests/redhat/cap/change_host_name.rb +18 -0
- data/plugins/guests/redhat/cap/configure_networks.rb +60 -0
- data/plugins/guests/redhat/cap/network_scripts_dir.rb +11 -0
- data/plugins/guests/redhat/guest.rb +11 -0
- data/plugins/guests/redhat/plugin.rb +30 -0
- data/plugins/guests/solaris/cap/change_host_name.rb +17 -0
- data/plugins/guests/solaris/cap/configure_networks.rb +25 -0
- data/plugins/guests/solaris/cap/halt.rb +22 -0
- data/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +31 -0
- data/plugins/guests/solaris/config.rb +18 -0
- data/plugins/guests/solaris/guest.rb +14 -0
- data/plugins/guests/solaris/plugin.rb +40 -0
- data/plugins/guests/solaris11/cap/change_host_name.rb +25 -0
- data/plugins/guests/solaris11/cap/configure_networks.rb +32 -0
- data/plugins/guests/solaris11/cap/halt.rb +26 -0
- data/plugins/guests/solaris11/cap/mount_virtualbox_shared_folder.rb +35 -0
- data/plugins/guests/solaris11/config.rb +22 -0
- data/plugins/guests/solaris11/guest.rb +15 -0
- data/plugins/guests/solaris11/plugin.rb +44 -0
- data/plugins/guests/suse/cap/change_host_name.rb +18 -0
- data/plugins/guests/suse/cap/configure_networks.rb +60 -0
- data/plugins/guests/suse/cap/network_scripts_dir.rb +11 -0
- data/plugins/guests/suse/guest.rb +11 -0
- data/plugins/guests/suse/plugin.rb +30 -0
- data/plugins/guests/ubuntu/cap/change_host_name.rb +24 -0
- data/plugins/guests/ubuntu/cap/mount_nfs.rb +19 -0
- data/plugins/guests/ubuntu/cap/mount_virtualbox_shared_folder.rb +14 -0
- data/plugins/guests/ubuntu/guest.rb +13 -0
- data/plugins/guests/ubuntu/plugin.rb +30 -0
- data/plugins/hosts/arch/host.rb +45 -0
- data/plugins/hosts/arch/plugin.rb +15 -0
- data/plugins/hosts/bsd/host.rb +178 -0
- data/plugins/hosts/bsd/plugin.rb +15 -0
- data/plugins/hosts/fedora/host.rb +57 -0
- data/plugins/hosts/fedora/plugin.rb +15 -0
- data/plugins/hosts/freebsd/host.rb +43 -0
- data/plugins/hosts/freebsd/plugin.rb +15 -0
- data/plugins/hosts/gentoo/host.rb +26 -0
- data/plugins/hosts/gentoo/plugin.rb +15 -0
- data/plugins/hosts/linux/host.rb +128 -0
- data/plugins/hosts/linux/plugin.rb +15 -0
- data/plugins/hosts/opensuse/host.rb +36 -0
- data/plugins/hosts/opensuse/plugin.rb +15 -0
- data/plugins/hosts/slackware/host.rb +26 -0
- data/plugins/hosts/slackware/plugin.rb +15 -0
- data/plugins/hosts/windows/host.rb +17 -0
- data/plugins/hosts/windows/plugin.rb +15 -0
- data/plugins/kernel_v1/config/nfs.rb +20 -0
- data/plugins/kernel_v1/config/package.rb +17 -0
- data/plugins/kernel_v1/config/ssh.rb +46 -0
- data/plugins/kernel_v1/config/vagrant.rb +31 -0
- data/plugins/kernel_v1/config/vm.rb +187 -0
- data/plugins/kernel_v1/plugin.rb +44 -0
- data/plugins/kernel_v2/config/nfs.rb +14 -0
- data/plugins/kernel_v2/config/package.rb +13 -0
- data/plugins/kernel_v2/config/ssh.rb +68 -0
- data/plugins/kernel_v2/config/ssh_connect.rb +40 -0
- data/plugins/kernel_v2/config/vagrant.rb +13 -0
- data/plugins/kernel_v2/config/vm.rb +486 -0
- data/plugins/kernel_v2/config/vm_provisioner.rb +55 -0
- data/plugins/kernel_v2/config/vm_subvm.rb +30 -0
- data/plugins/kernel_v2/plugin.rb +44 -0
- data/plugins/providers/virtualbox/action.rb +324 -0
- data/plugins/providers/virtualbox/action/boot.rb +23 -0
- data/plugins/providers/virtualbox/action/check_accessible.rb +23 -0
- data/plugins/providers/virtualbox/action/check_created.rb +21 -0
- data/plugins/providers/virtualbox/action/check_guest_additions.rb +45 -0
- data/plugins/providers/virtualbox/action/check_running.rb +21 -0
- data/plugins/providers/virtualbox/action/check_virtualbox.rb +22 -0
- data/plugins/providers/virtualbox/action/clean_machine_folder.rb +43 -0
- data/plugins/providers/virtualbox/action/clear_forwarded_ports.rb +18 -0
- data/plugins/providers/virtualbox/action/clear_network_interfaces.rb +31 -0
- data/plugins/providers/virtualbox/action/clear_shared_folders.rb +17 -0
- data/plugins/providers/virtualbox/action/created.rb +20 -0
- data/plugins/providers/virtualbox/action/customize.rb +43 -0
- data/plugins/providers/virtualbox/action/destroy.rb +19 -0
- data/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +23 -0
- data/plugins/providers/virtualbox/action/discard_state.rb +20 -0
- data/plugins/providers/virtualbox/action/export.rb +57 -0
- data/plugins/providers/virtualbox/action/forced_halt.rb +25 -0
- data/plugins/providers/virtualbox/action/forward_ports.rb +89 -0
- data/plugins/providers/virtualbox/action/import.rb +54 -0
- data/plugins/providers/virtualbox/action/is_paused.rb +20 -0
- data/plugins/providers/virtualbox/action/is_running.rb +20 -0
- data/plugins/providers/virtualbox/action/is_saved.rb +20 -0
- data/plugins/providers/virtualbox/action/match_mac_address.rb +21 -0
- data/plugins/providers/virtualbox/action/message_already_running.rb +16 -0
- data/plugins/providers/virtualbox/action/message_not_created.rb +16 -0
- data/plugins/providers/virtualbox/action/message_not_running.rb +16 -0
- data/plugins/providers/virtualbox/action/message_will_not_destroy.rb +17 -0
- data/plugins/providers/virtualbox/action/network.rb +424 -0
- data/plugins/providers/virtualbox/action/package.rb +20 -0
- data/plugins/providers/virtualbox/action/package_vagrantfile.rb +33 -0
- data/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb +35 -0
- data/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +69 -0
- data/plugins/providers/virtualbox/action/prune_nfs_exports.rb +20 -0
- data/plugins/providers/virtualbox/action/resume.rb +25 -0
- data/plugins/providers/virtualbox/action/sane_defaults.rb +91 -0
- data/plugins/providers/virtualbox/action/set_name.rb +52 -0
- data/plugins/providers/virtualbox/action/setup_package_files.rb +51 -0
- data/plugins/providers/virtualbox/action/share_folders.rb +128 -0
- data/plugins/providers/virtualbox/action/suspend.rb +20 -0
- data/plugins/providers/virtualbox/config.rb +123 -0
- data/plugins/providers/virtualbox/driver/base.rb +374 -0
- data/plugins/providers/virtualbox/driver/meta.rb +148 -0
- data/plugins/providers/virtualbox/driver/version_4_0.rb +485 -0
- data/plugins/providers/virtualbox/driver/version_4_1.rb +485 -0
- data/plugins/providers/virtualbox/driver/version_4_2.rb +499 -0
- data/plugins/providers/virtualbox/model/forwarded_port.rb +70 -0
- data/plugins/providers/virtualbox/plugin.rb +42 -0
- data/plugins/providers/virtualbox/provider.rb +92 -0
- data/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +35 -0
- data/plugins/provisioners/ansible/config.rb +89 -0
- data/plugins/provisioners/ansible/plugin.rb +23 -0
- data/plugins/provisioners/ansible/provisioner.rb +100 -0
- data/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +19 -0
- data/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb +14 -0
- data/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb +34 -0
- data/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +24 -0
- data/plugins/provisioners/cfengine/config.rb +126 -0
- data/plugins/provisioners/cfengine/plugin.rb +42 -0
- data/plugins/provisioners/cfengine/provisioner.rb +135 -0
- data/plugins/provisioners/chef/config/base.rb +116 -0
- data/plugins/provisioners/chef/config/chef_client.rb +66 -0
- data/plugins/provisioners/chef/config/chef_solo.rb +94 -0
- data/plugins/provisioners/chef/plugin.rb +33 -0
- data/plugins/provisioners/chef/provisioner/base.rb +113 -0
- data/plugins/provisioners/chef/provisioner/chef_client.rb +126 -0
- data/plugins/provisioners/chef/provisioner/chef_solo.rb +195 -0
- data/plugins/provisioners/file/config.rb +29 -0
- data/plugins/provisioners/file/plugin.rb +23 -0
- data/plugins/provisioners/file/provisioner.rb +16 -0
- data/plugins/provisioners/puppet/config/puppet.rb +93 -0
- data/plugins/provisioners/puppet/config/puppet_server.rb +16 -0
- data/plugins/provisioners/puppet/plugin.rb +33 -0
- data/plugins/provisioners/puppet/provisioner/puppet.rb +146 -0
- data/plugins/provisioners/puppet/provisioner/puppet_server.rb +74 -0
- data/plugins/provisioners/salt/bootstrap-salt.sh +6 -0
- data/plugins/provisioners/salt/config.rb +105 -0
- data/plugins/provisioners/salt/errors.rb +11 -0
- data/plugins/provisioners/salt/plugin.rb +22 -0
- data/plugins/provisioners/salt/provisioner.rb +249 -0
- data/plugins/provisioners/shell/config.rb +65 -0
- data/plugins/provisioners/shell/plugin.rb +23 -0
- data/plugins/provisioners/shell/provisioner.rb +98 -0
- data/templates/commands/init/Vagrantfile.erb +118 -0
- data/templates/commands/ssh_config/config.erb +20 -0
- data/templates/config/messages.erb +14 -0
- data/templates/config/validation_failed.erb +7 -0
- data/templates/guests/arch/network_dhcp.erb +4 -0
- data/templates/guests/arch/network_static.erb +5 -0
- data/templates/guests/coreos/etcd.service.erb +10 -0
- data/templates/guests/debian/network_dhcp.erb +11 -0
- data/templates/guests/debian/network_static.erb +7 -0
- data/templates/guests/fedora/network_dhcp.erb +6 -0
- data/templates/guests/fedora/network_static.erb +12 -0
- data/templates/guests/freebsd/network_dhcp.erb +3 -0
- data/templates/guests/freebsd/network_static.erb +3 -0
- data/templates/guests/gentoo/network_dhcp.erb +4 -0
- data/templates/guests/gentoo/network_static.erb +4 -0
- data/templates/guests/openbsd/network_dhcp.erb +1 -0
- data/templates/guests/openbsd/network_static.erb +1 -0
- data/templates/guests/redhat/network_dhcp.erb +6 -0
- data/templates/guests/redhat/network_static.erb +8 -0
- data/templates/guests/suse/network_dhcp.erb +6 -0
- data/templates/guests/suse/network_static.erb +10 -0
- data/templates/locales/en.yml +1248 -0
- data/templates/nfs/exports.erb +5 -0
- data/templates/nfs/exports_freebsd.erb +5 -0
- data/templates/nfs/exports_linux.erb +7 -0
- data/templates/provisioners/chef_client/client.erb +41 -0
- data/templates/provisioners/chef_solo/solo.erb +45 -0
- data/test/acceptance/base.rb +48 -0
- data/test/acceptance/box_test.rb +99 -0
- data/test/acceptance/destroy_test.rb +37 -0
- data/test/acceptance/halt_test.rb +72 -0
- data/test/acceptance/init_test.rb +33 -0
- data/test/acceptance/networking/host_only_test.rb +37 -0
- data/test/acceptance/networking/port_forward_test.rb +125 -0
- data/test/acceptance/package_test.rb +46 -0
- data/test/acceptance/provisioning/basic_test.rb +61 -0
- data/test/acceptance/provisioning/chef_solo_test.rb +37 -0
- data/test/acceptance/provisioning/shell_test.rb +53 -0
- data/test/acceptance/resume_test.rb +17 -0
- data/test/acceptance/shared_folders_test.rb +84 -0
- data/test/acceptance/skeletons/chef_solo_basic/README.md +3 -0
- data/test/acceptance/skeletons/chef_solo_basic/cookbooks/basic/recipes/default.rb +5 -0
- data/test/acceptance/skeletons/chef_solo_json/README.md +3 -0
- data/test/acceptance/skeletons/chef_solo_json/cookbooks/basic/recipes/default.rb +6 -0
- data/test/acceptance/skeletons/provisioner_multi/README.md +3 -0
- data/test/acceptance/skeletons/provisioner_multi/cookbooks/basic/recipes/default.rb +5 -0
- data/test/acceptance/ssh_test.rb +46 -0
- data/test/acceptance/support/config.rb +42 -0
- data/test/acceptance/support/isolated_environment.rb +118 -0
- data/test/acceptance/support/matchers/have_color.rb +9 -0
- data/test/acceptance/support/matchers/match_output.rb +14 -0
- data/test/acceptance/support/matchers/succeed.rb +14 -0
- data/test/acceptance/support/network_tests.rb +29 -0
- data/test/acceptance/support/output.rb +95 -0
- data/test/acceptance/support/shared/base_context.rb +72 -0
- data/test/acceptance/support/shared/command_examples.rb +33 -0
- data/test/acceptance/support/virtualbox.rb +36 -0
- data/test/acceptance/suspend_test.rb +56 -0
- data/test/acceptance/up_basic_test.rb +33 -0
- data/test/acceptance/up_with_box_url.rb +40 -0
- data/test/acceptance/vagrant_test.rb +47 -0
- data/test/acceptance/version_test.rb +15 -0
- data/test/config/acceptance_boxes.yml +7 -0
- data/test/support/isolated_environment.rb +46 -0
- data/test/support/tempdir.rb +43 -0
- data/test/unit/base.rb +27 -0
- data/test/unit/support/dummy_provider.rb +16 -0
- data/test/unit/support/isolated_environment.rb +179 -0
- data/test/unit/support/shared/base_context.rb +104 -0
- data/test/unit/vagrant/action/builder_test.rb +242 -0
- data/test/unit/vagrant/action/builtin/call_test.rb +145 -0
- data/test/unit/vagrant/action/builtin/confirm_test.rb +36 -0
- data/test/unit/vagrant/action/builtin/env_set_test.rb +20 -0
- data/test/unit/vagrant/action/builtin/graceful_halt_test.rb +60 -0
- data/test/unit/vagrant/action/builtin/lock_test.rb +98 -0
- data/test/unit/vagrant/action/builtin/ssh_exec_test.rb +57 -0
- data/test/unit/vagrant/action/hook_test.rb +120 -0
- data/test/unit/vagrant/action/runner_test.rb +71 -0
- data/test/unit/vagrant/action/warden_test.rb +92 -0
- data/test/unit/vagrant/batch_action_test.rb +36 -0
- data/test/unit/vagrant/box_collection_test.rb +237 -0
- data/test/unit/vagrant/box_test.rb +122 -0
- data/test/unit/vagrant/cli_test.rb +28 -0
- data/test/unit/vagrant/config/loader_test.rb +184 -0
- data/test/unit/vagrant/config/v1/dummy_config_test.rb +24 -0
- data/test/unit/vagrant/config/v1/loader_test.rb +145 -0
- data/test/unit/vagrant/config/v1/root_test.rb +40 -0
- data/test/unit/vagrant/config/v2/dummy_config_test.rb +24 -0
- data/test/unit/vagrant/config/v2/loader_test.rb +151 -0
- data/test/unit/vagrant/config/v2/root_test.rb +115 -0
- data/test/unit/vagrant/config/v2/util_test.rb +21 -0
- data/test/unit/vagrant/config_test.rb +66 -0
- data/test/unit/vagrant/environment_test.rb +746 -0
- data/test/unit/vagrant/guest_test.rb +179 -0
- data/test/unit/vagrant/hosts_test.rb +37 -0
- data/test/unit/vagrant/machine_state_test.rb +26 -0
- data/test/unit/vagrant/machine_test.rb +384 -0
- data/test/unit/vagrant/plugin/v1/command_test.rb +143 -0
- data/test/unit/vagrant/plugin/v1/communicator_test.rb +9 -0
- data/test/unit/vagrant/plugin/v1/config_test.rb +50 -0
- data/test/unit/vagrant/plugin/v1/host_test.rb +5 -0
- data/test/unit/vagrant/plugin/v1/manager_test.rb +114 -0
- data/test/unit/vagrant/plugin/v1/plugin_test.rb +267 -0
- data/test/unit/vagrant/plugin/v1/provider_test.rb +18 -0
- data/test/unit/vagrant/plugin/v2/command_test.rb +238 -0
- data/test/unit/vagrant/plugin/v2/communicator_test.rb +9 -0
- data/test/unit/vagrant/plugin/v2/components_test.rb +17 -0
- data/test/unit/vagrant/plugin/v2/config_test.rb +60 -0
- data/test/unit/vagrant/plugin/v2/host_test.rb +5 -0
- data/test/unit/vagrant/plugin/v2/manager_test.rb +174 -0
- data/test/unit/vagrant/plugin/v2/plugin_test.rb +305 -0
- data/test/unit/vagrant/plugin/v2/provider_test.rb +18 -0
- data/test/unit/vagrant/registry_test.rb +128 -0
- data/test/unit/vagrant/util/ansi_escape_code_remover_test.rb +16 -0
- data/test/unit/vagrant/util/downloader_test.rb +57 -0
- data/test/unit/vagrant/util/file_checksum_test.rb +23 -0
- data/test/unit/vagrant/util/hash_with_indifferent_access_test.rb +38 -0
- data/test/unit/vagrant/util/is_port_open_test.rb +53 -0
- data/test/unit/vagrant/util/line_endings_helper_test.rb +16 -0
- data/test/unit/vagrant/util/network_ip_test.rb +17 -0
- data/test/unit/vagrant/util/retryable_test.rb +106 -0
- data/test/unit/vagrant/util/safe_chdir_test.rb +43 -0
- data/test/unit/vagrant/util/scoped_hash_override_test.rb +48 -0
- data/test/unit/vagrant/util/ssh_test.rb +30 -0
- data/test/unit/vagrant/util/string_block_editor_test.rb +106 -0
- data/test/unit/vagrant/util/which_test.rb +43 -0
- data/test/unit/vagrant_test.rb +74 -0
- data/tnargav.gemspec +1 -1
- metadata +477 -1
@@ -0,0 +1,17 @@
|
|
1
|
+
require "vagrant"
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module CommandSSH
|
5
|
+
class Plugin < Vagrant.plugin("2")
|
6
|
+
name "ssh command"
|
7
|
+
description <<-DESC
|
8
|
+
The `ssh` command allows you to SSH in to your running virtual machine.
|
9
|
+
DESC
|
10
|
+
|
11
|
+
command("ssh") do
|
12
|
+
require File.expand_path("../command", __FILE__)
|
13
|
+
Command
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'optparse'
|
2
|
+
|
3
|
+
require "vagrant/util/safe_puts"
|
4
|
+
|
5
|
+
module VagrantPlugins
|
6
|
+
module CommandSSHConfig
|
7
|
+
class Command < Vagrant.plugin("2", :command)
|
8
|
+
include Vagrant::Util::SafePuts
|
9
|
+
|
10
|
+
def execute
|
11
|
+
options = {}
|
12
|
+
|
13
|
+
opts = OptionParser.new do |o|
|
14
|
+
o.banner = "Usage: vagrant ssh-config [vm-name] [--host name]"
|
15
|
+
o.separator ""
|
16
|
+
|
17
|
+
o.on("--host COMMAND", "Name the host for the config..") do |h|
|
18
|
+
options[:host] = h
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
argv = parse_options(opts)
|
23
|
+
return if !argv
|
24
|
+
|
25
|
+
with_target_vms(argv, :single_target => true) do |machine|
|
26
|
+
ssh_info = machine.ssh_info
|
27
|
+
raise Vagrant::Errors::SSHNotReady if ssh_info.nil?
|
28
|
+
|
29
|
+
variables = {
|
30
|
+
:host_key => options[:host] || machine.name || "vagrant",
|
31
|
+
:ssh_host => ssh_info[:host],
|
32
|
+
:ssh_port => ssh_info[:port],
|
33
|
+
:ssh_user => ssh_info[:username],
|
34
|
+
:private_key_path => ssh_info[:private_key_path],
|
35
|
+
:forward_agent => ssh_info[:forward_agent],
|
36
|
+
:forward_x11 => ssh_info[:forward_x11]
|
37
|
+
}
|
38
|
+
|
39
|
+
# Render the template and output directly to STDOUT
|
40
|
+
template = "commands/ssh_config/config"
|
41
|
+
safe_puts(Vagrant::Util::TemplateRenderer.render(template, variables))
|
42
|
+
end
|
43
|
+
|
44
|
+
# Success, exit status 0
|
45
|
+
0
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require "vagrant"
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module CommandSSHConfig
|
5
|
+
class Plugin < Vagrant.plugin("2")
|
6
|
+
name "ssh-config command"
|
7
|
+
description <<-DESC
|
8
|
+
The `ssh-config` command dumps an OpenSSH compatible configuration
|
9
|
+
that can be used to quickly SSH into your virtual machine.
|
10
|
+
DESC
|
11
|
+
|
12
|
+
command("ssh-config") do
|
13
|
+
require File.expand_path("../command", __FILE__)
|
14
|
+
Command
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'optparse'
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module CommandStatus
|
5
|
+
class Command < Vagrant.plugin("2", :command)
|
6
|
+
def execute
|
7
|
+
opts = OptionParser.new do |o|
|
8
|
+
o.banner = "Usage: vagrant status [machine-name]"
|
9
|
+
end
|
10
|
+
|
11
|
+
# Parse the options
|
12
|
+
argv = parse_options(opts)
|
13
|
+
return if !argv
|
14
|
+
|
15
|
+
max_name_length = 25
|
16
|
+
with_target_vms(argv) do |machine|
|
17
|
+
max_name_length = machine.name.length if machine.name.length > max_name_length
|
18
|
+
end
|
19
|
+
|
20
|
+
state = nil
|
21
|
+
results = []
|
22
|
+
with_target_vms(argv) do |machine|
|
23
|
+
state = machine.state if !state
|
24
|
+
results << "#{machine.name.to_s.ljust(max_name_length)} #{machine.state.short_description} (#{machine.provider_name})"
|
25
|
+
end
|
26
|
+
|
27
|
+
message = nil
|
28
|
+
if results.length == 1
|
29
|
+
message = state.long_description
|
30
|
+
else
|
31
|
+
message = I18n.t("vagrant.commands.status.listing")
|
32
|
+
end
|
33
|
+
|
34
|
+
@env.ui.info(I18n.t("vagrant.commands.status.output",
|
35
|
+
:states => results.join("\n"),
|
36
|
+
:message => message),
|
37
|
+
:prefix => false)
|
38
|
+
|
39
|
+
# Success, exit status 0
|
40
|
+
0
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require "vagrant"
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module CommandStatus
|
5
|
+
class Plugin < Vagrant.plugin("2")
|
6
|
+
name "status command"
|
7
|
+
description <<-DESC
|
8
|
+
The `status` command shows what the running state (running/saved/..)
|
9
|
+
is of all your virtual machines in this environment.
|
10
|
+
DESC
|
11
|
+
|
12
|
+
command("status") do
|
13
|
+
require File.expand_path("../command", __FILE__)
|
14
|
+
Command
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'optparse'
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module CommandSuspend
|
5
|
+
class Command < Vagrant.plugin("2", :command)
|
6
|
+
def execute
|
7
|
+
opts = OptionParser.new do |o|
|
8
|
+
o.banner = "Usage: vagrant suspend [vm-name]"
|
9
|
+
end
|
10
|
+
|
11
|
+
# Parse the options
|
12
|
+
argv = parse_options(opts)
|
13
|
+
return if !argv
|
14
|
+
|
15
|
+
@logger.debug("'suspend' each target VM...")
|
16
|
+
with_target_vms(argv) do |vm|
|
17
|
+
vm.action(:suspend)
|
18
|
+
end
|
19
|
+
|
20
|
+
# Success, exit status 0
|
21
|
+
0
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require "vagrant"
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module CommandSuspend
|
5
|
+
class Plugin < Vagrant.plugin("2")
|
6
|
+
name "suspend command"
|
7
|
+
description <<-DESC
|
8
|
+
The `suspend` command suspends execution and puts it to sleep.
|
9
|
+
The command `resume` returns it to running status.
|
10
|
+
DESC
|
11
|
+
|
12
|
+
command("suspend") do
|
13
|
+
require File.expand_path("../command", __FILE__)
|
14
|
+
Command
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'optparse'
|
2
|
+
|
3
|
+
require "vagrant"
|
4
|
+
|
5
|
+
require File.expand_path("../start_mixins", __FILE__)
|
6
|
+
|
7
|
+
module VagrantPlugins
|
8
|
+
module CommandUp
|
9
|
+
class Command < Vagrant.plugin("2", :command)
|
10
|
+
include StartMixins
|
11
|
+
|
12
|
+
def execute
|
13
|
+
options = {}
|
14
|
+
options[:destroy_on_error] = true
|
15
|
+
options[:parallel] = true
|
16
|
+
options[:provision_ignore_sentinel] = false
|
17
|
+
|
18
|
+
opts = OptionParser.new do |o|
|
19
|
+
o.banner = "Usage: vagrant up [vm-name] [options] [-h]"
|
20
|
+
o.separator ""
|
21
|
+
|
22
|
+
build_start_options(o, options)
|
23
|
+
|
24
|
+
o.on("--[no-]destroy-on-error",
|
25
|
+
"Destroy machine if any fatal error happens (default to true).") do |destroy|
|
26
|
+
options[:destroy_on_error] = destroy
|
27
|
+
end
|
28
|
+
|
29
|
+
o.on("--[no-]parallel",
|
30
|
+
"Enable or disable parallelism if provider supports it.") do |parallel|
|
31
|
+
options[:parallel] = parallel
|
32
|
+
end
|
33
|
+
|
34
|
+
o.on("--provider provider", String,
|
35
|
+
"Back the machine with a specific provider.") do |provider|
|
36
|
+
options[:provider] = provider
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# Parse the options
|
41
|
+
argv = parse_options(opts)
|
42
|
+
return if !argv
|
43
|
+
|
44
|
+
# Validate the provisioners
|
45
|
+
validate_provisioner_flags!(options)
|
46
|
+
|
47
|
+
# Go over each VM and bring it up
|
48
|
+
@logger.debug("'Up' each target VM...")
|
49
|
+
|
50
|
+
# Build up the batch job of what we'll do
|
51
|
+
@env.batch(options[:parallel]) do |batch|
|
52
|
+
with_target_vms(argv, :provider => options[:provider]) do |machine|
|
53
|
+
@env.ui.info(I18n.t(
|
54
|
+
"vagrant.commands.up.upping",
|
55
|
+
:name => machine.name,
|
56
|
+
:provider => machine.provider_name))
|
57
|
+
|
58
|
+
batch.action(machine, :up, options)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
# Success, exit status 0
|
63
|
+
0
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require "vagrant"
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module CommandUp
|
5
|
+
class Plugin < Vagrant.plugin("2")
|
6
|
+
name "up command"
|
7
|
+
description <<-DESC
|
8
|
+
The `up` command brings the virtual environment up and running.
|
9
|
+
DESC
|
10
|
+
|
11
|
+
command("up") do
|
12
|
+
require File.expand_path("../command", __FILE__)
|
13
|
+
Command
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
module VagrantPlugins
|
2
|
+
module CommandUp
|
3
|
+
module StartMixins
|
4
|
+
# This adds the standard `start` command line flags to the given
|
5
|
+
# OptionParser, storing the result in the `options` dictionary.
|
6
|
+
#
|
7
|
+
# @param [OptionParser] parser
|
8
|
+
# @param [Hash] options
|
9
|
+
def build_start_options(parser, options)
|
10
|
+
# Setup the defaults
|
11
|
+
options[:provision_types] = nil
|
12
|
+
|
13
|
+
# Add the options
|
14
|
+
parser.on("--[no-]provision", "Enable or disable provisioning") do |p|
|
15
|
+
options[:provision_enabled] = p
|
16
|
+
end
|
17
|
+
|
18
|
+
parser.on("--provision-with x,y,z", Array,
|
19
|
+
"Enable only certain provisioners, by type.") do |list|
|
20
|
+
options[:provision_types] = list.map { |type| type.to_sym }
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
# This validates the provisioner flags and raises an exception
|
25
|
+
# if there are invalid ones.
|
26
|
+
def validate_provisioner_flags!(options)
|
27
|
+
(options[:provision_types] || []).each do |type|
|
28
|
+
klass = Vagrant.plugin("2").manager.provisioners[type]
|
29
|
+
if !klass
|
30
|
+
raise Vagrant::Errors::ProvisionerFlagInvalid,
|
31
|
+
name: type.to_s
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,400 @@
|
|
1
|
+
require 'logger'
|
2
|
+
require 'pathname'
|
3
|
+
require 'stringio'
|
4
|
+
require 'timeout'
|
5
|
+
|
6
|
+
require 'log4r'
|
7
|
+
require 'net/ssh'
|
8
|
+
require 'net/ssh/proxy/command'
|
9
|
+
require 'net/scp'
|
10
|
+
|
11
|
+
require 'vagrant/util/ansi_escape_code_remover'
|
12
|
+
require 'vagrant/util/file_mode'
|
13
|
+
require 'vagrant/util/platform'
|
14
|
+
require 'vagrant/util/retryable'
|
15
|
+
require 'vagrant/util/ssh'
|
16
|
+
|
17
|
+
module VagrantPlugins
|
18
|
+
module CommunicatorSSH
|
19
|
+
# This class provides communication with the VM via SSH.
|
20
|
+
class Communicator < Vagrant.plugin("2", :communicator)
|
21
|
+
include Vagrant::Util::ANSIEscapeCodeRemover
|
22
|
+
include Vagrant::Util::Retryable
|
23
|
+
|
24
|
+
def self.match?(machine)
|
25
|
+
# All machines are currently expected to have SSH.
|
26
|
+
true
|
27
|
+
end
|
28
|
+
|
29
|
+
def initialize(machine)
|
30
|
+
@machine = machine
|
31
|
+
@logger = Log4r::Logger.new("vagrant::communication::ssh")
|
32
|
+
@connection = nil
|
33
|
+
end
|
34
|
+
|
35
|
+
def ready?
|
36
|
+
@logger.debug("Checking whether SSH is ready...")
|
37
|
+
|
38
|
+
# Attempt to connect. This will raise an exception if it fails.
|
39
|
+
connect
|
40
|
+
|
41
|
+
# If we reached this point then we successfully connected
|
42
|
+
@logger.info("SSH is ready!")
|
43
|
+
true
|
44
|
+
rescue Vagrant::Errors::VagrantError => e
|
45
|
+
# We catch a `VagrantError` which would signal that something went
|
46
|
+
# wrong expectedly in the `connect`, which means we didn't connect.
|
47
|
+
@logger.info("SSH not up: #{e.inspect}")
|
48
|
+
return false
|
49
|
+
end
|
50
|
+
|
51
|
+
def execute(command, opts=nil, &block)
|
52
|
+
opts = {
|
53
|
+
:error_check => true,
|
54
|
+
:error_class => Vagrant::Errors::VagrantError,
|
55
|
+
:error_key => :ssh_bad_exit_status,
|
56
|
+
:command => command,
|
57
|
+
:sudo => false
|
58
|
+
}.merge(opts || {})
|
59
|
+
|
60
|
+
# Connect via SSH and execute the command in the shell.
|
61
|
+
stdout = ""
|
62
|
+
stderr = ""
|
63
|
+
exit_status = connect do |connection|
|
64
|
+
shell_execute(connection, command, opts[:sudo]) do |type, data|
|
65
|
+
if type == :stdout
|
66
|
+
stdout += data
|
67
|
+
elsif type == :stderr
|
68
|
+
stderr += data
|
69
|
+
end
|
70
|
+
|
71
|
+
block.call(type, data) if block
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# Check for any errors
|
76
|
+
if opts[:error_check] && exit_status != 0
|
77
|
+
# The error classes expect the translation key to be _key,
|
78
|
+
# but that makes for an ugly configuration parameter, so we
|
79
|
+
# set it here from `error_key`
|
80
|
+
error_opts = opts.merge(
|
81
|
+
:_key => opts[:error_key],
|
82
|
+
:stdout => stdout,
|
83
|
+
:stderr => stderr
|
84
|
+
)
|
85
|
+
raise opts[:error_class], error_opts
|
86
|
+
end
|
87
|
+
|
88
|
+
# Return the exit status
|
89
|
+
exit_status
|
90
|
+
end
|
91
|
+
|
92
|
+
def sudo(command, opts=nil, &block)
|
93
|
+
# Run `execute` but with the `sudo` option.
|
94
|
+
opts = { :sudo => true }.merge(opts || {})
|
95
|
+
execute(command, opts, &block)
|
96
|
+
end
|
97
|
+
|
98
|
+
def download(from, to=nil)
|
99
|
+
@logger.debug("Downloading: #{from} to #{to}")
|
100
|
+
|
101
|
+
scp_connect do |scp|
|
102
|
+
scp.download!(from, to)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
def test(command, opts=nil)
|
107
|
+
opts = { :error_check => false }.merge(opts || {})
|
108
|
+
execute(command, opts) == 0
|
109
|
+
end
|
110
|
+
|
111
|
+
def upload(from, to)
|
112
|
+
@logger.debug("Uploading: #{from} to #{to}")
|
113
|
+
|
114
|
+
scp_connect do |scp|
|
115
|
+
if File.directory?(from)
|
116
|
+
# Recurisvely upload directories
|
117
|
+
scp.upload!(from, to, :recursive => true)
|
118
|
+
else
|
119
|
+
# Open file read only to fix issue [GH-1036]
|
120
|
+
scp.upload!(File.open(from, "r"), to)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
rescue RuntimeError => e
|
124
|
+
# Net::SCP raises a runtime error for this so the only way we have
|
125
|
+
# to really catch this exception is to check the message to see if
|
126
|
+
# it is something we care about. If it isn't, we re-raise.
|
127
|
+
raise if e.message !~ /Permission denied/
|
128
|
+
|
129
|
+
# Otherwise, it is a permission denied, so let's raise a proper
|
130
|
+
# exception
|
131
|
+
raise Vagrant::Errors::SCPPermissionDenied, :path => from.to_s
|
132
|
+
end
|
133
|
+
|
134
|
+
protected
|
135
|
+
|
136
|
+
# Opens an SSH connection and yields it to a block.
|
137
|
+
def connect
|
138
|
+
if @connection && !@connection.closed?
|
139
|
+
# There is a chance that the socket is closed despite us checking
|
140
|
+
# 'closed?' above. To test this we need to send data through the
|
141
|
+
# socket.
|
142
|
+
begin
|
143
|
+
@connection.exec!("")
|
144
|
+
rescue Exception => e
|
145
|
+
@logger.info("Connection errored, not re-using. Will reconnect.")
|
146
|
+
@logger.debug(e.inspect)
|
147
|
+
@connection = nil
|
148
|
+
end
|
149
|
+
|
150
|
+
# If the @connection is still around, then it is valid,
|
151
|
+
# and we use it.
|
152
|
+
if @connection
|
153
|
+
@logger.debug("Re-using SSH connection.")
|
154
|
+
return yield @connection if block_given?
|
155
|
+
return
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
# Get the SSH info for the machine, raise an exception if the
|
160
|
+
# provider is saying that SSH is not ready.
|
161
|
+
ssh_info = @machine.ssh_info
|
162
|
+
raise Vagrant::Errors::SSHNotReady if ssh_info.nil?
|
163
|
+
|
164
|
+
# Build the options we'll use to initiate the connection via Net::SSH
|
165
|
+
opts = {
|
166
|
+
:auth_methods => ["none", "publickey", "hostbased", "password"],
|
167
|
+
:config => false,
|
168
|
+
:forward_agent => ssh_info[:forward_agent],
|
169
|
+
:keys => [ssh_info[:private_key_path]],
|
170
|
+
:keys_only => true,
|
171
|
+
:paranoid => false,
|
172
|
+
:port => ssh_info[:port],
|
173
|
+
:user_known_hosts_file => []
|
174
|
+
}
|
175
|
+
|
176
|
+
# Check that the private key permissions are valid
|
177
|
+
Vagrant::Util::SSH.check_key_permissions(Pathname.new(ssh_info[:private_key_path]))
|
178
|
+
|
179
|
+
# Connect to SSH, giving it a few tries
|
180
|
+
connection = nil
|
181
|
+
begin
|
182
|
+
# These are the exceptions that we retry because they represent
|
183
|
+
# errors that are generally fixed from a retry and don't
|
184
|
+
# necessarily represent immediate failure cases.
|
185
|
+
exceptions = [
|
186
|
+
Errno::EACCES,
|
187
|
+
Errno::EADDRINUSE,
|
188
|
+
Errno::ECONNREFUSED,
|
189
|
+
Errno::ECONNRESET,
|
190
|
+
Errno::ENETUNREACH,
|
191
|
+
Errno::EHOSTUNREACH,
|
192
|
+
Net::SSH::Disconnect,
|
193
|
+
Timeout::Error
|
194
|
+
]
|
195
|
+
|
196
|
+
retries = 5
|
197
|
+
timeout = 60
|
198
|
+
|
199
|
+
@logger.info("Attempting SSH connnection...")
|
200
|
+
connection = retryable(:tries => retries, :on => exceptions) do
|
201
|
+
Timeout.timeout(timeout) do
|
202
|
+
begin
|
203
|
+
# This logger will get the Net-SSH log data for us.
|
204
|
+
ssh_logger_io = StringIO.new
|
205
|
+
ssh_logger = Logger.new(ssh_logger_io)
|
206
|
+
|
207
|
+
# Setup logging for connections
|
208
|
+
connect_opts = opts.merge({
|
209
|
+
:logger => ssh_logger,
|
210
|
+
:timeout => 15,
|
211
|
+
:verbose => :debug
|
212
|
+
})
|
213
|
+
|
214
|
+
if ssh_info[:proxy_command]
|
215
|
+
connect_opts[:proxy] = Net::SSH::Proxy::Command.new(ssh_info[:proxy_command])
|
216
|
+
end
|
217
|
+
|
218
|
+
@logger.info("Attempting to connect to SSH...")
|
219
|
+
@logger.info(" - Host: #{ssh_info[:host]}")
|
220
|
+
@logger.info(" - Port: #{ssh_info[:port]}")
|
221
|
+
@logger.info(" - Username: #{ssh_info[:username]}")
|
222
|
+
@logger.info(" - Key Path: #{ssh_info[:private_key_path]}")
|
223
|
+
|
224
|
+
Net::SSH.start(ssh_info[:host], ssh_info[:username], connect_opts)
|
225
|
+
ensure
|
226
|
+
# Make sure we output the connection log
|
227
|
+
@logger.debug("== Net-SSH connection debug-level log START ==")
|
228
|
+
@logger.debug(ssh_logger_io.string)
|
229
|
+
@logger.debug("== Net-SSH connection debug-level log END ==")
|
230
|
+
end
|
231
|
+
end
|
232
|
+
end
|
233
|
+
rescue Errno::EACCES
|
234
|
+
# This happens on connect() for unknown reasons yet...
|
235
|
+
raise Vagrant::Errors::SSHConnectEACCES
|
236
|
+
rescue Errno::ETIMEDOUT, Timeout::Error
|
237
|
+
# This happens if we continued to timeout when attempting to connect.
|
238
|
+
raise Vagrant::Errors::SSHConnectionTimeout
|
239
|
+
rescue Net::SSH::AuthenticationFailed
|
240
|
+
# This happens if authentication failed. We wrap the error in our
|
241
|
+
# own exception.
|
242
|
+
raise Vagrant::Errors::SSHAuthenticationFailed
|
243
|
+
rescue Net::SSH::Disconnect
|
244
|
+
# This happens if the remote server unexpectedly closes the
|
245
|
+
# connection. This is usually raised when SSH is running on the
|
246
|
+
# other side but can't properly setup a connection. This is
|
247
|
+
# usually a server-side issue.
|
248
|
+
raise Vagrant::Errors::SSHDisconnected
|
249
|
+
rescue Errno::ECONNREFUSED
|
250
|
+
# This is raised if we failed to connect the max amount of times
|
251
|
+
raise Vagrant::Errors::SSHConnectionRefused
|
252
|
+
rescue Errno::ECONNRESET
|
253
|
+
# This is raised if we failed to connect the max number of times
|
254
|
+
# due to an ECONNRESET.
|
255
|
+
raise Vagrant::Errors::SSHConnectionReset
|
256
|
+
rescue Errno::EHOSTDOWN
|
257
|
+
# This is raised if we get an ICMP DestinationUnknown error.
|
258
|
+
raise Vagrant::Errors::SSHHostDown
|
259
|
+
rescue Errno::EHOSTUNREACH
|
260
|
+
# This is raised if we can't work out how to route traffic.
|
261
|
+
raise Vagrant::Errors::SSHNoRoute
|
262
|
+
rescue NotImplementedError
|
263
|
+
# This is raised if a private key type that Net-SSH doesn't support
|
264
|
+
# is used. Show a nicer error.
|
265
|
+
raise Vagrant::Errors::SSHKeyTypeNotSupported
|
266
|
+
end
|
267
|
+
|
268
|
+
@connection = connection
|
269
|
+
|
270
|
+
# Yield the connection that is ready to be used and
|
271
|
+
# return the value of the block
|
272
|
+
return yield connection if block_given?
|
273
|
+
end
|
274
|
+
|
275
|
+
# Executes the command on an SSH connection within a login shell.
|
276
|
+
def shell_execute(connection, command, sudo=false)
|
277
|
+
@logger.info("Execute: #{command} (sudo=#{sudo.inspect})")
|
278
|
+
exit_status = nil
|
279
|
+
|
280
|
+
# Determine the shell to execute. If we are using `sudo` then we
|
281
|
+
# need to wrap the shell in a `sudo` call.
|
282
|
+
shell = @machine.config.ssh.shell
|
283
|
+
shell = "sudo -H #{shell}" if sudo
|
284
|
+
|
285
|
+
# Open the channel so we can execute or command
|
286
|
+
channel = connection.open_channel do |ch|
|
287
|
+
ch.exec(shell) do |ch2, _|
|
288
|
+
# Setup the channel callbacks so we can get data and exit status
|
289
|
+
ch2.on_data do |ch3, data|
|
290
|
+
# Filter out the clear screen command
|
291
|
+
data = remove_ansi_escape_codes(data)
|
292
|
+
@logger.debug("stdout: #{data}")
|
293
|
+
yield :stdout, data if block_given?
|
294
|
+
end
|
295
|
+
|
296
|
+
ch2.on_extended_data do |ch3, type, data|
|
297
|
+
# Filter out the clear screen command
|
298
|
+
data = remove_ansi_escape_codes(data)
|
299
|
+
@logger.debug("stderr: #{data}")
|
300
|
+
yield :stderr, data if block_given?
|
301
|
+
end
|
302
|
+
|
303
|
+
ch2.on_request("exit-status") do |ch3, data|
|
304
|
+
exit_status = data.read_long
|
305
|
+
@logger.debug("Exit status: #{exit_status}")
|
306
|
+
|
307
|
+
# Close the channel, since after the exit status we're
|
308
|
+
# probably done. This fixes up issues with hanging.
|
309
|
+
channel.close
|
310
|
+
end
|
311
|
+
|
312
|
+
# Set the terminal
|
313
|
+
ch2.send_data "export TERM=vt100\n"
|
314
|
+
|
315
|
+
# Set SSH_AUTH_SOCK if we are in sudo and forwarding agent.
|
316
|
+
# This is to work around often misconfigured boxes where
|
317
|
+
# the SSH_AUTH_SOCK env var is not preserved.
|
318
|
+
if @machine.ssh_info[:forward_agent] && sudo
|
319
|
+
auth_socket = ""
|
320
|
+
execute("echo; printf $SSH_AUTH_SOCK") do |type, data|
|
321
|
+
if type == :stdout
|
322
|
+
auth_socket += data
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
if auth_socket != ""
|
327
|
+
# Make sure we only read the last line which should be
|
328
|
+
# the $SSH_AUTH_SOCK env var we printed.
|
329
|
+
auth_socket = auth_socket.split("\n").last.chomp
|
330
|
+
end
|
331
|
+
|
332
|
+
if auth_socket == ""
|
333
|
+
@logger.warn("No SSH_AUTH_SOCK found despite forward_agent being set.")
|
334
|
+
else
|
335
|
+
@logger.info("Setting SSH_AUTH_SOCK remotely: #{auth_socket}")
|
336
|
+
ch2.send_data "export SSH_AUTH_SOCK=#{auth_socket}\n"
|
337
|
+
end
|
338
|
+
end
|
339
|
+
|
340
|
+
# Output the command
|
341
|
+
ch2.send_data "#{command}\n"
|
342
|
+
|
343
|
+
# Remember to exit or this channel will hang open
|
344
|
+
ch2.send_data "exit\n"
|
345
|
+
|
346
|
+
# Send eof to let server know we're done
|
347
|
+
ch2.eof!
|
348
|
+
end
|
349
|
+
end
|
350
|
+
|
351
|
+
begin
|
352
|
+
keep_alive = nil
|
353
|
+
|
354
|
+
if @machine.config.ssh.keep_alive
|
355
|
+
# Begin sending keep-alive packets while we wait for the script
|
356
|
+
# to complete. This avoids connections closing on long-running
|
357
|
+
# scripts.
|
358
|
+
keep_alive = Thread.new do
|
359
|
+
loop do
|
360
|
+
sleep 5
|
361
|
+
@logger.debug("Sending SSH keep-alive...")
|
362
|
+
connection.send_global_request("keep-alive@openssh.com")
|
363
|
+
end
|
364
|
+
end
|
365
|
+
end
|
366
|
+
|
367
|
+
# Wait for the channel to complete
|
368
|
+
begin
|
369
|
+
channel.wait
|
370
|
+
rescue IOError
|
371
|
+
@logger.info("SSH connection unexpected closed. Assuming reboot or something.")
|
372
|
+
exit_status = 0
|
373
|
+
end
|
374
|
+
ensure
|
375
|
+
# Kill the keep-alive thread
|
376
|
+
keep_alive.kill if keep_alive
|
377
|
+
end
|
378
|
+
|
379
|
+
# Return the final exit status
|
380
|
+
return exit_status
|
381
|
+
end
|
382
|
+
|
383
|
+
# Opens an SCP connection and yields it so that you can download
|
384
|
+
# and upload files.
|
385
|
+
def scp_connect
|
386
|
+
# Connect to SCP and yield the SCP object
|
387
|
+
connect do |connection|
|
388
|
+
scp = Net::SCP.new(connection)
|
389
|
+
return yield scp
|
390
|
+
end
|
391
|
+
rescue Net::SCP::Error => e
|
392
|
+
# If we get the exit code of 127, then this means SCP is unavailable.
|
393
|
+
raise Vagrant::Errors::SCPUnavailable if e.message =~ /\(127\)/
|
394
|
+
|
395
|
+
# Otherwise, just raise the error up
|
396
|
+
raise
|
397
|
+
end
|
398
|
+
end
|
399
|
+
end
|
400
|
+
end
|