vagrant-unbundled 1.8.4.2 → 1.8.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +52 -0
- data/Gemfile.lock +9 -7
- data/RELEASE.md +37 -14
- data/lib/vagrant/action/builtin/box_add.rb +3 -1
- data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +5 -0
- data/lib/vagrant/box_collection.rb +2 -1
- data/lib/vagrant/bundler.rb +36 -1
- data/lib/vagrant/errors.rb +16 -8
- data/lib/vagrant/plugin/state_file.rb +8 -1
- data/lib/vagrant/util/platform.rb +1 -1
- data/plugins/guests/arch/cap/change_host_name.rb +13 -10
- data/plugins/guests/arch/cap/configure_networks.rb +11 -8
- data/plugins/guests/arch/cap/nfs.rb +35 -0
- data/plugins/guests/arch/cap/rsync.rb +16 -0
- data/plugins/guests/arch/cap/smb.rb +17 -0
- data/plugins/guests/arch/plugin.rb +28 -3
- data/plugins/guests/atomic/cap/change_host_name.rb +13 -10
- data/plugins/guests/atomic/plugin.rb +3 -3
- data/plugins/guests/{netbsd → bsd}/cap/halt.rb +2 -2
- data/plugins/guests/bsd/cap/nfs.rb +49 -0
- data/plugins/guests/bsd/cap/public_key.rb +65 -0
- data/plugins/guests/bsd/cap/virtualbox.rb +16 -0
- data/plugins/guests/bsd/guest.rb +9 -0
- data/plugins/guests/bsd/plugin.rb +40 -0
- data/plugins/guests/coreos/cap/change_host_name.rb +1 -1
- data/plugins/guests/coreos/plugin.rb +4 -4
- data/plugins/guests/darwin/cap/change_host_name.rb +4 -1
- data/plugins/guests/darwin/cap/configure_networks.rb +12 -5
- data/plugins/guests/darwin/cap/halt.rb +3 -1
- data/plugins/guests/darwin/cap/rsync.rb +7 -4
- data/plugins/guests/darwin/plugin.rb +13 -28
- data/plugins/guests/debian/cap/change_host_name.rb +14 -15
- data/plugins/guests/debian/cap/configure_networks.rb +2 -6
- data/plugins/guests/debian/cap/{nfs_client.rb → nfs.rb} +2 -1
- data/plugins/guests/debian/cap/rsync.rb +5 -6
- data/plugins/guests/debian/plugin.rb +8 -8
- data/plugins/guests/esxi/cap/mount_nfs_folder.rb +2 -2
- data/plugins/guests/esxi/plugin.rb +6 -6
- data/plugins/guests/fedora/cap/flavor.rb +1 -1
- data/plugins/guests/fedora/plugin.rb +2 -17
- data/plugins/guests/freebsd/cap/change_host_name.rb +2 -3
- data/plugins/guests/freebsd/cap/rsync.rb +7 -4
- data/plugins/guests/freebsd/plugin.rb +9 -29
- data/plugins/guests/funtoo/plugin.rb +3 -8
- data/plugins/guests/gentoo/cap/change_host_name.rb +21 -6
- data/plugins/guests/gentoo/cap/configure_networks.rb +35 -26
- data/plugins/guests/gentoo/plugin.rb +4 -4
- data/plugins/guests/linux/cap/choose_addressable_ip_addr.rb +2 -3
- data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +31 -45
- data/plugins/guests/linux/cap/network_interfaces.rb +20 -0
- data/plugins/guests/linux/cap/nfs.rb +57 -0
- data/plugins/guests/linux/cap/public_key.rb +65 -0
- data/plugins/guests/linux/cap/rsync.rb +7 -4
- data/plugins/guests/linux/plugin.rb +30 -25
- data/plugins/guests/mint/plugin.rb +1 -1
- data/plugins/guests/netbsd/plugin.rb +10 -30
- data/plugins/guests/nixos/plugin.rb +5 -5
- data/plugins/guests/omnios/cap/change_host_name.rb +1 -1
- data/plugins/guests/omnios/plugin.rb +4 -4
- data/plugins/guests/openbsd/cap/change_host_name.rb +21 -3
- data/plugins/guests/openbsd/plugin.rb +10 -30
- data/plugins/guests/photon/cap/change_host_name.rb +1 -1
- data/plugins/guests/photon/plugin.rb +4 -4
- data/plugins/guests/pld/cap/change_host_name.rb +1 -1
- data/plugins/guests/pld/plugin.rb +4 -4
- data/plugins/guests/redhat/cap/change_host_name.rb +4 -3
- data/plugins/guests/redhat/cap/configure_networks.rb +1 -24
- data/plugins/guests/redhat/plugin.rb +7 -7
- data/plugins/guests/slackware/cap/change_host_name.rb +1 -1
- data/plugins/guests/slackware/cap/configure_networks.rb +1 -5
- data/plugins/guests/slackware/plugin.rb +3 -3
- data/plugins/guests/smartos/plugin.rb +12 -12
- data/plugins/guests/solaris/plugin.rb +14 -14
- data/plugins/guests/solaris11/plugin.rb +12 -12
- data/plugins/guests/suse/cap/change_host_name.rb +1 -1
- data/plugins/guests/suse/cap/configure_networks.rb +1 -5
- data/plugins/guests/suse/plugin.rb +8 -8
- data/plugins/guests/tinycore/cap/mount_nfs.rb +2 -2
- data/plugins/guests/tinycore/plugin.rb +7 -7
- data/plugins/guests/trisquel/plugin.rb +1 -1
- data/plugins/guests/ubuntu/guest.rb +1 -1
- data/plugins/guests/ubuntu/plugin.rb +1 -6
- data/plugins/guests/windows/plugin.rb +2 -2
- data/plugins/kernel_v2/config/vm.rb +8 -1
- data/plugins/providers/hyperv/scripts/get_vm_status.ps1 +25 -5
- data/plugins/providers/virtualbox/driver/meta.rb +1 -0
- data/plugins/providers/virtualbox/driver/version_5_1.rb +734 -0
- data/plugins/providers/virtualbox/plugin.rb +1 -0
- data/plugins/synced_folders/nfs/synced_folder.rb +10 -2
- data/plugins/synced_folders/rsync/helper.rb +11 -4
- data/scripts/{bintray_upload.sh → sign.sh} +0 -0
- data/templates/guests/arch/network_static.erb +3 -3
- data/templates/guests/arch/network_static6.erb +8 -0
- data/templates/guests/freebsd/network_static6.erb +6 -0
- data/templates/guests/funtoo/network_static6.erb +9 -0
- data/templates/guests/gentoo/network_dhcp.erb +1 -1
- data/templates/guests/gentoo/network_static.erb +4 -4
- data/templates/guests/gentoo/network_static6.erb +7 -0
- data/templates/guests/redhat/network_dhcp.erb +1 -1
- data/templates/guests/redhat/network_static.erb +4 -1
- data/templates/guests/{fedora → redhat}/network_static6.erb +5 -2
- data/templates/locales/en.yml +40 -6
- data/test/unit/plugins/guests/arch/cap/change_host_name_test.rb +6 -6
- data/test/unit/plugins/guests/arch/cap/configure_networks_test.rb +20 -15
- data/test/unit/plugins/guests/arch/cap/rsync_test.rb +30 -0
- data/test/unit/plugins/guests/arch/cap/smb_test.rb +38 -0
- data/test/unit/plugins/guests/atomic/cap/change_host_name_test.rb +9 -8
- data/test/unit/plugins/guests/{freebsd → bsd}/cap/halt_test.rb +11 -10
- data/test/unit/plugins/guests/{freebsd → bsd}/cap/insert_public_key_test.rb +7 -6
- data/test/unit/plugins/guests/bsd/cap/nfs_test.rb +68 -0
- data/test/unit/plugins/guests/coreos/cap/change_host_name_test.rb +5 -5
- data/test/unit/plugins/guests/darwin/cap/change_host_name_test.rb +5 -5
- data/test/unit/plugins/guests/darwin/cap/halt_test.rb +36 -0
- data/test/unit/plugins/guests/debian/cap/change_host_name_test.rb +3 -5
- data/test/unit/plugins/guests/debian/cap/configure_networks_test.rb +13 -9
- data/test/unit/plugins/guests/debian/cap/rsync_test.rb +3 -11
- data/test/unit/plugins/guests/freebsd/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/linux/cap/mount_nfs_test.rb +16 -3
- data/test/unit/plugins/guests/omnios/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/photon/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/pld/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/redhat/cap/change_host_name_test.rb +4 -3
- data/test/unit/plugins/guests/redhat/cap/configure_networks_test.rb +17 -33
- data/test/unit/plugins/guests/slackware/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/slackware/cap/configure_networks_test.rb +8 -4
- data/test/unit/plugins/guests/suse/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/suse/cap/configure_networks_test.rb +13 -16
- data/test/unit/plugins/kernel_v2/config/vm_test.rb +10 -2
- data/test/unit/templates/guests/arch/network_static_test.rb +4 -2
- data/test/unit/templates/guests/gentoo/network_dhcp_test.rb +2 -2
- data/test/unit/templates/guests/gentoo/network_static_test.rb +10 -10
- data/test/unit/templates/guests/redhat/network_dhcp_test.rb +2 -2
- data/test/unit/templates/guests/redhat/network_static_test.rb +9 -9
- data/vagrant.gemspec +3 -3
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/CHANGELOG.md +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/CONTRIBUTING.md +38 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/README.md +297 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/bin/listen +12 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/base.rb +141 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/bsd.rb +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/config.rb +26 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/darwin.rb +92 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/linux.rb +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/polling.rb +37 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/windows.rb +98 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter.rb +45 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/backend.rb +38 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/change.rb +76 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/cli.rb +65 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/directory.rb +87 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/config.rb +55 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/loop.rb +117 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/processor.rb +122 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/queue.rb +55 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/file.rb +80 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/fsm.rb +132 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/internals/thread_pool.rb +29 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/listener/config.rb +41 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/listener.rb +133 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/logger.rb +32 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/options.rb +23 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/queue_optimizer.rb +132 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/record/entry.rb +64 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/record/symlink_detector.rb +39 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/record.rb +118 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/silencer/controller.rb +48 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/silencer.rb +97 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/version.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen.rb +57 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.gitignore +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.rspec +2 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.rubocop-disables.yml +384 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.rubocop.yml +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.travis.yml +43 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/AUTHORS +98 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/Gemfile +11 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/LICENSE +21 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/README.md +667 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/Rakefile +132 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/bin/restclient +92 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/history.md +310 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/rest-client.rb +2 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/rest_client.rb +2 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/abstract_response.rb +226 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/exceptions.rb +244 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/params_array.rb +72 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/payload.rb +209 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/platform.rb +49 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/raw_response.rb +38 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/request.rb +904 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/resource.rb +168 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/response.rb +80 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/utils.rb +235 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/version.rb +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/windows/root_certs.rb +105 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/windows.rb +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient.rb +184 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/rest-client.gemspec +31 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/rest-client.windows.gemspec +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/helpers.rb +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/_lib.rb +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/244b5494.0 +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/81b9768f.0 +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/README +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/digicert.crt +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/415660c1.0 +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/7651b327.0 +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/README +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/verisign.crt +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/certs/digicert.crt +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/certs/verisign.crt +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/httpbin_spec.rb +86 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/integration_spec.rb +125 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/request_spec.rb +127 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/spec_helper.rb +29 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/_lib.rb +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/abstract_response_spec.rb +145 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/exceptions_spec.rb +108 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/master_shake.jpg +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/params_array_spec.rb +36 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/payload_spec.rb +263 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/raw_response_spec.rb +18 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/request2_spec.rb +54 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/request_spec.rb +1265 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/resource_spec.rb +130 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/response_spec.rb +241 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/restclient_spec.rb +79 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/utils_spec.rb +147 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/windows/root_certs_spec.rb +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.gitignore +10 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.rspec +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.rubocop.yml +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.travis.yml +11 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/LICENSE.txt +21 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/README.md +151 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/logger.rb +16 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/quiet.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/ruby_version.rb +58 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/travis/ruby_version.rb +59 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/travis.rb +58 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/version.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/warning.rb +97 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep.rb +2 -0
- data/vendor/bundle/ruby/2.3.0/specifications/listen-3.1.5.gemspec +44 -0
- data/vendor/bundle/ruby/2.3.0/specifications/rest-client-2.0.0.gemspec +60 -0
- data/vendor/bundle/ruby/2.3.0/specifications/ruby_dep-1.4.0.gemspec +34 -0
- data/version.txt +1 -1
- metadata +147 -44
- data/plugins/guests/darwin/cap/insert_public_key.rb +0 -33
- data/plugins/guests/darwin/cap/mount_nfs_folder.rb +0 -37
- data/plugins/guests/darwin/cap/remove_public_key.rb +0 -21
- data/plugins/guests/fedora/cap/change_host_name.rb +0 -29
- data/plugins/guests/fedora/cap/configure_networks.rb +0 -135
- data/plugins/guests/fedora/cap/network_scripts_dir.rb +0 -15
- data/plugins/guests/freebsd/cap/halt.rb +0 -16
- data/plugins/guests/freebsd/cap/insert_public_key.rb +0 -34
- data/plugins/guests/freebsd/cap/mount_nfs_folder.rb +0 -24
- data/plugins/guests/freebsd/cap/remove_public_key.rb +0 -21
- data/plugins/guests/funtoo/cap/change_host_name.rb +0 -17
- data/plugins/guests/linux/cap/insert_public_key.rb +0 -31
- data/plugins/guests/linux/cap/mount_nfs.rb +0 -50
- data/plugins/guests/linux/cap/nfs_client.rb +0 -11
- data/plugins/guests/linux/cap/remove_public_key.rb +0 -24
- data/plugins/guests/netbsd/cap/insert_public_key.rb +0 -21
- data/plugins/guests/netbsd/cap/mount_nfs_folder.rb +0 -17
- data/plugins/guests/netbsd/cap/remove_public_key.rb +0 -21
- data/plugins/guests/openbsd/cap/halt.rb +0 -16
- data/plugins/guests/openbsd/cap/insert_public_key.rb +0 -21
- data/plugins/guests/openbsd/cap/mount_nfs_folder.rb +0 -14
- data/plugins/guests/openbsd/cap/remove_public_key.rb +0 -21
- data/plugins/guests/ubuntu/cap/change_host_name.rb +0 -52
- data/templates/guests/fedora/network_dhcp.erb +0 -6
- data/templates/guests/fedora/network_static.erb +0 -16
- data/test/unit/plugins/guests/freebsd/cap/mount_nfs_folder_test.rb +0 -53
- data/test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb +0 -42
- data/test/unit/templates/guests/fedora/network_dhcp_test.rb +0 -21
- data/test/unit/templates/guests/fedora/network_static6_test.rb +0 -25
- data/test/unit/templates/guests/fedora/network_static_test.rb +0 -71
@@ -1,24 +0,0 @@
|
|
1
|
-
require "vagrant/util/shell_quote"
|
2
|
-
|
3
|
-
module VagrantPlugins
|
4
|
-
module GuestLinux
|
5
|
-
module Cap
|
6
|
-
class RemovePublicKey
|
7
|
-
def self.remove_public_key(machine, contents)
|
8
|
-
contents = contents.chomp
|
9
|
-
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
|
10
|
-
|
11
|
-
machine.communicate.tap do |comm|
|
12
|
-
if comm.test("test -f ~/.ssh/authorized_keys")
|
13
|
-
comm.execute(<<SCRIPT)
|
14
|
-
sed -e '/^.*#{contents}.*$/d' ~/.ssh/authorized_keys > ~/.ssh/authorized_keys.new
|
15
|
-
mv ~/.ssh/authorized_keys.new ~/.ssh/authorized_keys
|
16
|
-
chmod 600 ~/.ssh/authorized_keys
|
17
|
-
SCRIPT
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require "vagrant/util/shell_quote"
|
2
|
-
|
3
|
-
module VagrantPlugins
|
4
|
-
module GuestNetBSD
|
5
|
-
module Cap
|
6
|
-
class InsertPublicKey
|
7
|
-
def self.insert_public_key(machine, contents)
|
8
|
-
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
|
9
|
-
contents = contents.gsub("\n", "\\n")
|
10
|
-
|
11
|
-
machine.communicate.tap do |comm|
|
12
|
-
comm.execute("mkdir -p ~/.ssh")
|
13
|
-
comm.execute("chmod 0700 ~/.ssh")
|
14
|
-
comm.execute("printf '#{contents}' >> ~/.ssh/authorized_keys")
|
15
|
-
comm.execute("chmod 0600 ~/.ssh/authorized_keys")
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
module VagrantPlugins
|
2
|
-
module GuestNetBSD
|
3
|
-
module Cap
|
4
|
-
class MountNFSFolder
|
5
|
-
def self.mount_nfs_folder(machine, ip, folders)
|
6
|
-
folders.each do |name, opts|
|
7
|
-
machine.communicate.sudo(<<CMDS, {shell: "sh"})
|
8
|
-
set -e
|
9
|
-
mkdir -p #{opts[:guestpath]}
|
10
|
-
/sbin/mount -t nfs '#{ip}:#{opts[:hostpath]}' '#{opts[:guestpath]}'
|
11
|
-
CMDS
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require "vagrant/util/shell_quote"
|
2
|
-
|
3
|
-
module VagrantPlugins
|
4
|
-
module GuestNetBSD
|
5
|
-
module Cap
|
6
|
-
class RemovePublicKey
|
7
|
-
def self.remove_public_key(machine, contents)
|
8
|
-
contents = contents.chomp
|
9
|
-
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
|
10
|
-
|
11
|
-
machine.communicate.tap do |comm|
|
12
|
-
if comm.test("test -f ~/.ssh/authorized_keys")
|
13
|
-
comm.execute(
|
14
|
-
"sed -i '/^.*#{contents}.*$/d' ~/.ssh/authorized_keys")
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
module VagrantPlugins
|
2
|
-
module GuestOpenBSD
|
3
|
-
module Cap
|
4
|
-
class Halt
|
5
|
-
def self.halt(machine)
|
6
|
-
begin
|
7
|
-
machine.communicate.sudo("shutdown -p -h now")
|
8
|
-
rescue IOError
|
9
|
-
# Do nothing, because it probably means the machine shut down
|
10
|
-
# and SSH connection was lost.
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require "vagrant/util/shell_quote"
|
2
|
-
|
3
|
-
module VagrantPlugins
|
4
|
-
module GuestOpenBSD
|
5
|
-
module Cap
|
6
|
-
class InsertPublicKey
|
7
|
-
def self.insert_public_key(machine, contents)
|
8
|
-
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
|
9
|
-
contents = contents.gsub("\n", "\\n")
|
10
|
-
|
11
|
-
machine.communicate.tap do |comm|
|
12
|
-
comm.execute("mkdir -p ~/.ssh")
|
13
|
-
comm.execute("chmod 0700 ~/.ssh")
|
14
|
-
comm.execute("printf '#{contents}\\n' >> ~/.ssh/authorized_keys")
|
15
|
-
comm.execute("chmod 0600 ~/.ssh/authorized_keys")
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
module VagrantPlugins
|
2
|
-
module GuestOpenBSD
|
3
|
-
module Cap
|
4
|
-
class MountNFSFolder
|
5
|
-
def self.mount_nfs_folder(machine, ip, folders)
|
6
|
-
folders.each do |name, opts|
|
7
|
-
machine.communicate.sudo("mkdir -p #{opts[:guestpath]}")
|
8
|
-
machine.communicate.sudo("mount '#{ip}:#{opts[:hostpath]}' '#{opts[:guestpath]}'")
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require "vagrant/util/shell_quote"
|
2
|
-
|
3
|
-
module VagrantPlugins
|
4
|
-
module GuestOpenBSD
|
5
|
-
module Cap
|
6
|
-
class RemovePublicKey
|
7
|
-
def self.remove_public_key(machine, contents)
|
8
|
-
contents = contents.chomp
|
9
|
-
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
|
10
|
-
|
11
|
-
machine.communicate.tap do |comm|
|
12
|
-
if comm.test("test -f ~/.ssh/authorized_keys")
|
13
|
-
comm.execute(
|
14
|
-
"sed -i '/^.*#{contents}.*$/d' ~/.ssh/authorized_keys")
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,52 +0,0 @@
|
|
1
|
-
module VagrantPlugins
|
2
|
-
module GuestUbuntu
|
3
|
-
module Cap
|
4
|
-
class ChangeHostName
|
5
|
-
def self.change_host_name(machine, name)
|
6
|
-
comm = machine.communicate
|
7
|
-
|
8
|
-
if !comm.test("hostname -f | grep -w '#{name}'")
|
9
|
-
basename = name.split(".", 2)[0]
|
10
|
-
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
11
|
-
# Set the hostname
|
12
|
-
echo '#{name}' > /etc/hostname
|
13
|
-
hostname -F /etc/hostname
|
14
|
-
|
15
|
-
if command -v hostnamectl; then
|
16
|
-
hostnamectl set-hostname '#{name}'
|
17
|
-
fi
|
18
|
-
|
19
|
-
# Remove comments and blank lines from /etc/hosts
|
20
|
-
sed -i'' -e 's/#.*$//' -e '/^$/d' /etc/hosts
|
21
|
-
|
22
|
-
# Prepend ourselves to /etc/hosts
|
23
|
-
grep -w '#{name}' /etc/hosts || {
|
24
|
-
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
|
25
|
-
}
|
26
|
-
|
27
|
-
# Update mailname
|
28
|
-
echo '#{name}' > /etc/mailname
|
29
|
-
|
30
|
-
# Restart networking and force new DHCP
|
31
|
-
if [ test -f /etc/init.d/hostname ]; then
|
32
|
-
/etc/init.d/hostname start || true
|
33
|
-
fi
|
34
|
-
|
35
|
-
if [ test -f /etc/init.d/hostname.sh ]; then
|
36
|
-
/etc/init.d/hostname.sh start || true
|
37
|
-
fi
|
38
|
-
|
39
|
-
if [ test -f /etc/init.d/networking ]; then
|
40
|
-
/etc/init.d/networking force-reload
|
41
|
-
fi
|
42
|
-
|
43
|
-
if [ test -f /etc/init.d/network-manager ]; then
|
44
|
-
/etc/init.d/network-manager force-reload
|
45
|
-
fi
|
46
|
-
EOH
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
#VAGRANT-BEGIN
|
2
|
-
# The contents below are automatically generated by Vagrant. Do not modify.
|
3
|
-
NM_CONTROLLED=no
|
4
|
-
BOOTPROTO=none
|
5
|
-
ONBOOT=yes
|
6
|
-
IPADDR=<%= options[:ip] %>
|
7
|
-
NETMASK=<%= options[:netmask] %>
|
8
|
-
DEVICE=<%= options[:device] %>
|
9
|
-
<% if options[:gateway] %>
|
10
|
-
GATEWAY=<%= options[:gateway] %>
|
11
|
-
<% end %>
|
12
|
-
<% if options[:mac_address] %>
|
13
|
-
HWADDR=<%= options[:mac_address] %>
|
14
|
-
<% end %>
|
15
|
-
PEERDNS=no
|
16
|
-
#VAGRANT-END
|
@@ -1,53 +0,0 @@
|
|
1
|
-
require_relative "../../../../base"
|
2
|
-
|
3
|
-
describe "VagrantPlugins::GuestFreeBSD::Cap::MountNFSFolder" do
|
4
|
-
let(:described_class) do
|
5
|
-
VagrantPlugins::GuestFreeBSD::Plugin
|
6
|
-
.components
|
7
|
-
.guest_capabilities[:freebsd]
|
8
|
-
.get(:mount_nfs_folder)
|
9
|
-
end
|
10
|
-
|
11
|
-
let(:machine) { double("machine") }
|
12
|
-
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
|
13
|
-
|
14
|
-
before do
|
15
|
-
allow(machine).to receive(:communicate).and_return(comm)
|
16
|
-
end
|
17
|
-
|
18
|
-
after do
|
19
|
-
comm.verify_expectations!
|
20
|
-
end
|
21
|
-
|
22
|
-
describe ".mount_nfs_folder" do
|
23
|
-
let(:ip) { "1.2.3.4" }
|
24
|
-
|
25
|
-
it "mounts the folder" do
|
26
|
-
folders = {
|
27
|
-
"/vagrant-nfs" => {
|
28
|
-
type: :nfs,
|
29
|
-
guestpath: "/guest",
|
30
|
-
hostpath: "/host",
|
31
|
-
}
|
32
|
-
}
|
33
|
-
described_class.mount_nfs_folder(machine, ip, folders)
|
34
|
-
|
35
|
-
expect(comm.received_commands[0]).to match(/mkdir -p '\/guest'/)
|
36
|
-
expect(comm.received_commands[0]).to match(/'1.2.3.4:\/host' '\/guest'/)
|
37
|
-
end
|
38
|
-
|
39
|
-
it "mounts with options" do
|
40
|
-
folders = {
|
41
|
-
"/vagrant-nfs" => {
|
42
|
-
type: :nfs,
|
43
|
-
guestpath: "/guest",
|
44
|
-
hostpath: "/host",
|
45
|
-
nfs_version: 2,
|
46
|
-
}
|
47
|
-
}
|
48
|
-
described_class.mount_nfs_folder(machine, ip, folders)
|
49
|
-
|
50
|
-
expect(comm.received_commands[0]).to match(/mount -t nfs -o nfsv2/)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
require_relative "../../../../base"
|
2
|
-
|
3
|
-
describe "VagrantPlugins::GuestUbuntu::Cap::ChangeHostName" do
|
4
|
-
let(:caps) do
|
5
|
-
VagrantPlugins::GuestUbuntu::Plugin
|
6
|
-
.components
|
7
|
-
.guest_capabilities[:ubuntu]
|
8
|
-
end
|
9
|
-
|
10
|
-
let(:machine) { double("machine") }
|
11
|
-
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
|
12
|
-
|
13
|
-
before do
|
14
|
-
allow(machine).to receive(:communicate).and_return(comm)
|
15
|
-
end
|
16
|
-
|
17
|
-
after do
|
18
|
-
comm.verify_expectations!
|
19
|
-
end
|
20
|
-
|
21
|
-
describe ".change_host_name" do
|
22
|
-
let(:cap) { caps.get(:change_host_name) }
|
23
|
-
|
24
|
-
let(:name) { 'banana-rama.example.com' }
|
25
|
-
|
26
|
-
it "sets the hostname if not set" do
|
27
|
-
comm.stub_command("hostname -f | grep -w '#{name}'", exit_code: 1)
|
28
|
-
cap.change_host_name(machine, name)
|
29
|
-
expect(comm.received_commands[1]).to match(/hostname -F \/etc\/hostname/)
|
30
|
-
expect(comm.received_commands[1]).to match(/\/etc\/init.d\/hostname.sh start/)
|
31
|
-
expect(comm.received_commands[1]).to match(/\/etc\/init.d\/hostname start/)
|
32
|
-
expect(comm.received_commands[1]).to match(/\/etc\/init.d\/networking force-reload/)
|
33
|
-
expect(comm.received_commands[1]).to match(/\/etc\/init.d\/network-manager force-reload/)
|
34
|
-
end
|
35
|
-
|
36
|
-
it "does not set the hostname if unset" do
|
37
|
-
comm.stub_command("hostname -f | grep -w '#{name}'", exit_code: 0)
|
38
|
-
cap.change_host_name(machine, name)
|
39
|
-
expect(comm.received_commands.size).to eq(1)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require_relative "../../../base"
|
2
|
-
|
3
|
-
require "vagrant/util/template_renderer"
|
4
|
-
|
5
|
-
describe "templates/guests/fedora/network_dhcp" do
|
6
|
-
let(:template) { "guests/fedora/network_dhcp" }
|
7
|
-
|
8
|
-
it "renders the template" do
|
9
|
-
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
device: "en0",
|
11
|
-
})
|
12
|
-
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
13
|
-
#VAGRANT-BEGIN
|
14
|
-
# The contents below are automatically generated by Vagrant. Do not modify.
|
15
|
-
BOOTPROTO=dhcp
|
16
|
-
ONBOOT=yes
|
17
|
-
DEVICE=en0
|
18
|
-
#VAGRANT-END
|
19
|
-
EOH
|
20
|
-
end
|
21
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
require_relative "../../../base"
|
2
|
-
|
3
|
-
require "vagrant/util/template_renderer"
|
4
|
-
|
5
|
-
describe "templates/guests/fedora/network_static6" do
|
6
|
-
let(:template) { "guests/fedora/network_static6" }
|
7
|
-
|
8
|
-
it "renders the template" do
|
9
|
-
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
device: "en0",
|
11
|
-
ip: "fc00::10/64"
|
12
|
-
})
|
13
|
-
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
14
|
-
#VAGRANT-BEGIN
|
15
|
-
# The contents below are automatically generated by Vagrant. Do not modify.
|
16
|
-
NM_CONTROLLED=no
|
17
|
-
BOOTPROTO=static
|
18
|
-
ONBOOT=yes
|
19
|
-
IPV6INIT=yes
|
20
|
-
IPV6ADDR=fc00::10/64
|
21
|
-
DEVICE=en0
|
22
|
-
#VAGRANT-END
|
23
|
-
EOH
|
24
|
-
end
|
25
|
-
end
|
@@ -1,71 +0,0 @@
|
|
1
|
-
require_relative "../../../base"
|
2
|
-
|
3
|
-
require "vagrant/util/template_renderer"
|
4
|
-
|
5
|
-
describe "templates/guests/fedora/network_static" do
|
6
|
-
let(:template) { "guests/fedora/network_static" }
|
7
|
-
|
8
|
-
it "renders the template" do
|
9
|
-
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
device: "en0",
|
11
|
-
ip: "1.1.1.1",
|
12
|
-
netmask: "255.255.0.0",
|
13
|
-
})
|
14
|
-
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
15
|
-
#VAGRANT-BEGIN
|
16
|
-
# The contents below are automatically generated by Vagrant. Do not modify.
|
17
|
-
NM_CONTROLLED=no
|
18
|
-
BOOTPROTO=none
|
19
|
-
ONBOOT=yes
|
20
|
-
IPADDR=1.1.1.1
|
21
|
-
NETMASK=255.255.0.0
|
22
|
-
DEVICE=en0
|
23
|
-
PEERDNS=no
|
24
|
-
#VAGRANT-END
|
25
|
-
EOH
|
26
|
-
end
|
27
|
-
|
28
|
-
it "includes the gateway" do
|
29
|
-
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
30
|
-
device: "en0",
|
31
|
-
ip: "1.1.1.1",
|
32
|
-
netmask: "255.255.0.0",
|
33
|
-
gateway: "1.2.3.4",
|
34
|
-
})
|
35
|
-
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
36
|
-
#VAGRANT-BEGIN
|
37
|
-
# The contents below are automatically generated by Vagrant. Do not modify.
|
38
|
-
NM_CONTROLLED=no
|
39
|
-
BOOTPROTO=none
|
40
|
-
ONBOOT=yes
|
41
|
-
IPADDR=1.1.1.1
|
42
|
-
NETMASK=255.255.0.0
|
43
|
-
DEVICE=en0
|
44
|
-
GATEWAY=1.2.3.4
|
45
|
-
PEERDNS=no
|
46
|
-
#VAGRANT-END
|
47
|
-
EOH
|
48
|
-
end
|
49
|
-
|
50
|
-
it "includes the mac_address" do
|
51
|
-
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
52
|
-
device: "en0",
|
53
|
-
ip: "1.1.1.1",
|
54
|
-
netmask: "255.255.0.0",
|
55
|
-
mac_address: "abcd1234",
|
56
|
-
})
|
57
|
-
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
58
|
-
#VAGRANT-BEGIN
|
59
|
-
# The contents below are automatically generated by Vagrant. Do not modify.
|
60
|
-
NM_CONTROLLED=no
|
61
|
-
BOOTPROTO=none
|
62
|
-
ONBOOT=yes
|
63
|
-
IPADDR=1.1.1.1
|
64
|
-
NETMASK=255.255.0.0
|
65
|
-
DEVICE=en0
|
66
|
-
HWADDR=abcd1234
|
67
|
-
PEERDNS=no
|
68
|
-
#VAGRANT-END
|
69
|
-
EOH
|
70
|
-
end
|
71
|
-
end
|