tnargav 1.2.3 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +19 -3
- data/CHANGELOG.md +311 -0
- data/bin/vagrant +12 -0
- data/config/default.rb +2 -4
- data/keys/README.md +0 -7
- data/lib/vagrant.rb +7 -0
- data/lib/vagrant/action.rb +2 -0
- data/lib/vagrant/action/builtin/box_add.rb +12 -1
- data/lib/vagrant/action/builtin/confirm.rb +1 -0
- data/lib/vagrant/action/builtin/graceful_halt.rb +9 -5
- data/lib/vagrant/action/builtin/handle_box_url.rb +16 -7
- data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +1 -1
- data/lib/vagrant/action/builtin/mixin_provisioners.rb +43 -0
- data/lib/vagrant/action/builtin/nfs.rb +18 -8
- data/lib/vagrant/action/builtin/provision.rb +30 -21
- data/lib/vagrant/action/builtin/provisioner_cleanup.rb +35 -0
- data/lib/vagrant/action/builtin/wait_for_communicator.rb +84 -0
- data/lib/vagrant/action/warden.rb +2 -1
- data/lib/vagrant/box_collection.rb +62 -44
- data/lib/vagrant/cli.rb +1 -9
- data/lib/vagrant/config/v2/root.rb +6 -0
- data/lib/vagrant/environment.rb +27 -51
- data/lib/vagrant/errors.rb +33 -1
- data/lib/vagrant/guest.rb +2 -2
- data/lib/vagrant/machine.rb +14 -22
- data/lib/vagrant/plugin/v2/command.rb +4 -1
- data/lib/vagrant/plugin/v2/communicator.rb +21 -0
- data/lib/vagrant/plugin/v2/guest.rb +1 -56
- data/lib/vagrant/plugin/v2/provisioner.rb +6 -0
- data/lib/vagrant/util/downloader.rb +7 -2
- data/lib/vagrant/util/platform.rb +43 -0
- data/lib/vagrant/util/ssh.rb +5 -0
- data/lib/vagrant/util/subprocess.rb +16 -2
- data/lib/vagrant/version.rb +1 -1
- data/plugins/commands/box/command/remove.rb +22 -2
- data/plugins/commands/box/command/repackage.rb +1 -1
- data/plugins/commands/destroy/command.rb +8 -3
- data/plugins/commands/help/command.rb +12 -0
- data/plugins/commands/help/plugin.rb +17 -0
- data/plugins/commands/plugin/action.rb +11 -0
- data/plugins/commands/plugin/action/install_gem.rb +26 -1
- data/plugins/commands/plugin/action/plugin_exists_check.rb +26 -0
- data/plugins/commands/plugin/command/install.rb +4 -21
- data/plugins/commands/plugin/command/mixin_install_opts.rb +30 -0
- data/plugins/commands/plugin/command/root.rb +5 -0
- data/plugins/commands/plugin/command/update.rb +41 -0
- data/plugins/commands/reload/command.rb +4 -0
- data/plugins/commands/status/command.rb +6 -1
- data/plugins/commands/up/command.rb +10 -0
- data/plugins/commands/up/start_mixins.rb +12 -1
- data/plugins/communicators/ssh/communicator.rb +61 -6
- data/plugins/guests/arch/cap/change_host_name.rb +1 -2
- data/plugins/guests/arch/cap/configure_networks.rb +6 -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 +1 -0
- data/plugins/guests/gentoo/guest.rb +1 -1
- data/plugins/guests/linux/cap/mount_nfs.rb +9 -1
- data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +26 -7
- data/plugins/guests/linux/cap/shell_expand_guest_path.rb +4 -1
- 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/mount_nfs_folder.rb +14 -0
- data/plugins/guests/openbsd/plugin.rb +15 -0
- data/plugins/guests/solaris/cap/halt.rb +2 -1
- data/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +4 -1
- 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/configure_networks.rb +60 -0
- data/plugins/guests/suse/plugin.rb +5 -0
- data/plugins/guests/ubuntu/cap/change_host_name.rb +1 -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 +0 -19
- data/plugins/guests/ubuntu/plugin.rb +10 -0
- data/plugins/hosts/arch/host.rb +5 -28
- data/plugins/hosts/bsd/host.rb +83 -7
- data/plugins/hosts/fedora/host.rb +12 -6
- data/plugins/hosts/gentoo/host.rb +3 -1
- data/plugins/hosts/linux/host.rb +42 -9
- data/plugins/hosts/opensuse/host.rb +3 -1
- data/plugins/hosts/slackware/host.rb +26 -0
- data/plugins/hosts/slackware/plugin.rb +15 -0
- data/plugins/kernel_v1/config/ssh.rb +2 -2
- data/plugins/kernel_v2/config/ssh.rb +8 -16
- data/plugins/kernel_v2/config/vm.rb +68 -11
- data/plugins/providers/virtualbox/action.rb +15 -2
- data/plugins/providers/virtualbox/action/boot.rb +0 -26
- data/plugins/providers/virtualbox/action/clear_network_interfaces.rb +1 -1
- data/plugins/providers/virtualbox/action/customize.rb +10 -3
- data/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +8 -1
- data/plugins/providers/virtualbox/action/forward_ports.rb +1 -0
- data/plugins/providers/virtualbox/action/import.rb +3 -0
- data/plugins/providers/virtualbox/action/network.rb +14 -2
- data/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +7 -2
- data/plugins/providers/virtualbox/action/set_name.rb +13 -1
- data/plugins/providers/virtualbox/config.rb +39 -2
- data/plugins/providers/virtualbox/driver/base.rb +5 -0
- data/plugins/providers/virtualbox/driver/meta.rb +7 -1
- data/plugins/providers/virtualbox/driver/version_4_0.rb +2 -2
- data/plugins/providers/virtualbox/driver/version_4_1.rb +2 -2
- data/plugins/providers/virtualbox/driver/version_4_2.rb +17 -0
- data/plugins/providers/virtualbox/model/forwarded_port.rb +7 -1
- data/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +5 -1
- data/plugins/provisioners/ansible/config.rb +40 -23
- data/plugins/provisioners/ansible/provisioner.rb +68 -13
- data/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +1 -1
- data/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +1 -1
- data/plugins/provisioners/cfengine/config.rb +7 -1
- data/plugins/provisioners/cfengine/provisioner.rb +4 -5
- data/plugins/provisioners/chef/config/base.rb +31 -0
- data/plugins/provisioners/chef/config/chef_client.rb +15 -6
- data/plugins/provisioners/chef/config/chef_solo.rb +18 -11
- data/plugins/provisioners/chef/provisioner/base.rb +23 -3
- data/plugins/provisioners/chef/provisioner/chef_client.rb +25 -6
- data/plugins/provisioners/chef/provisioner/chef_solo.rb +16 -13
- 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 +4 -1
- data/plugins/provisioners/puppet/provisioner/puppet.rb +15 -9
- data/plugins/provisioners/puppet/provisioner/puppet_server.rb +9 -2
- 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 +11 -2
- data/plugins/provisioners/shell/provisioner.rb +15 -3
- data/scripts/website_push_docs.sh +12 -0
- data/scripts/website_push_www.sh +12 -0
- data/templates/commands/init/Vagrantfile.erb +5 -2
- data/templates/commands/ssh_config/config.erb +4 -0
- data/templates/guests/coreos/etcd.service.erb +10 -0
- data/templates/guests/fedora/network_static.erb +2 -3
- data/templates/guests/openbsd/network_dhcp.erb +1 -0
- data/templates/guests/openbsd/network_static.erb +1 -0
- data/templates/guests/suse/network_dhcp.erb +6 -0
- data/templates/guests/suse/network_static.erb +10 -0
- data/templates/locales/en.yml +123 -13
- data/templates/nfs/exports.erb +4 -4
- data/templates/nfs/exports_freebsd.erb +4 -4
- data/templates/nfs/exports_linux.erb +5 -3
- data/templates/provisioners/chef_client/client.erb +9 -0
- data/templates/provisioners/chef_solo/solo.erb +19 -1
- data/test/unit/vagrant/action/builtin/graceful_halt_test.rb +1 -2
- data/test/unit/vagrant/cli_test.rb +1 -0
- data/test/unit/vagrant/config/v2/root_test.rb +18 -0
- data/test/unit/vagrant/environment_test.rb +25 -0
- data/test/unit/vagrant/util/downloader_test.rb +4 -4
- data/test/unit/vagrant_test.rb +18 -0
- data/website/docs/.buildpacks +2 -0
- data/website/docs/Gemfile +13 -0
- data/website/docs/Gemfile.lock +141 -0
- data/website/docs/Procfile +1 -0
- data/website/docs/README.md +26 -0
- data/website/docs/config.rb +78 -0
- data/website/docs/config.ru +44 -0
- data/website/docs/helpers/sidebar_helpers.rb +19 -0
- data/website/docs/lib/redirect_to_latest.rb +25 -0
- data/website/docs/lib/redirect_v1_docs.rb +26 -0
- data/website/docs/source/404.html.erb +7 -0
- data/website/docs/source/images/bullet_1.png +0 -0
- data/website/docs/source/images/bullet_2.png +0 -0
- data/website/docs/source/images/bullet_3.png +0 -0
- data/website/docs/source/images/customers.png +0 -0
- data/website/docs/source/images/customers_small.png +0 -0
- data/website/docs/source/images/footer_background.png +0 -0
- data/website/docs/source/images/footer_hashi_logo.png +0 -0
- data/website/docs/source/images/footer_vagrant_logo.png +0 -0
- data/website/docs/source/images/get_started_background.png +0 -0
- data/website/docs/source/images/icon_caution.png +0 -0
- data/website/docs/source/images/logo_docs.png +0 -0
- data/website/docs/source/images/logo_docs_small.png +0 -0
- data/website/docs/source/images/logo_small.png +0 -0
- data/website/docs/source/images/logo_vagrant.png +0 -0
- data/website/docs/source/images/open_close.png +0 -0
- data/website/docs/source/images/search_icon.png +0 -0
- data/website/docs/source/images/sidebar_background_docs.png +0 -0
- data/website/docs/source/images/sidebar_background_inner.png +0 -0
- data/website/docs/source/images/steps_background.png +0 -0
- data/website/docs/source/images/vagrant_header_background.png +0 -0
- data/website/docs/source/index.html.erb +0 -0
- data/website/docs/source/javascripts/backstretch.js +4 -0
- data/website/docs/source/javascripts/bootstrap.min.js +7 -0
- data/website/docs/source/javascripts/fittext.js +43 -0
- data/website/docs/source/javascripts/grid-overlay.js +161 -0
- data/website/docs/source/javascripts/jquery.js +2 -0
- data/website/docs/source/javascripts/less-1.3.0.min.js +9 -0
- data/website/docs/source/javascripts/modernizr.js +1384 -0
- data/website/docs/source/javascripts/vagrantup.js +15 -0
- data/website/docs/source/layouts/layout.erb +266 -0
- data/website/docs/source/stylesheets/_base.less +317 -0
- data/website/docs/source/stylesheets/_components.less +74 -0
- data/website/docs/source/stylesheets/_footer.less +101 -0
- data/website/docs/source/stylesheets/_media-queries.less +452 -0
- data/website/docs/source/stylesheets/_mixins.less +174 -0
- data/website/docs/source/stylesheets/_nav.less +71 -0
- data/website/docs/source/stylesheets/_pages.less +276 -0
- data/website/docs/source/stylesheets/_sidebar.less +136 -0
- data/website/docs/source/stylesheets/_type.less +36 -0
- data/website/docs/source/stylesheets/_variables.less +39 -0
- data/website/docs/source/stylesheets/bootstrap.css +5946 -0
- data/website/docs/source/stylesheets/vagrantup.less +16 -0
- data/website/docs/source/v2/boxes.html.md +78 -0
- data/website/docs/source/v2/boxes/format.html.md +32 -0
- data/website/docs/source/v2/cli/box.html.md +62 -0
- data/website/docs/source/v2/cli/destroy.html.md +20 -0
- data/website/docs/source/v2/cli/halt.html.md +19 -0
- data/website/docs/source/v2/cli/index.html.md +24 -0
- data/website/docs/source/v2/cli/init.html.md +18 -0
- data/website/docs/source/v2/cli/package.html.md +43 -0
- data/website/docs/source/v2/cli/plugin.html.md +56 -0
- data/website/docs/source/v2/cli/provision.html.md +24 -0
- data/website/docs/source/v2/cli/reload.html.md +27 -0
- data/website/docs/source/v2/cli/resume.html.md +11 -0
- data/website/docs/source/v2/cli/ssh.html.md +24 -0
- data/website/docs/source/v2/cli/ssh_config.html.md +16 -0
- data/website/docs/source/v2/cli/status.html.md +14 -0
- data/website/docs/source/v2/cli/suspend.html.md +19 -0
- data/website/docs/source/v2/cli/up.html.md +34 -0
- data/website/docs/source/v2/debugging.html.md +42 -0
- data/website/docs/source/v2/getting-started/boxes.html.md +56 -0
- data/website/docs/source/v2/getting-started/index.html.md +43 -0
- data/website/docs/source/v2/getting-started/networking.html.md +45 -0
- data/website/docs/source/v2/getting-started/project_setup.html.md +38 -0
- data/website/docs/source/v2/getting-started/providers.html.md +37 -0
- data/website/docs/source/v2/getting-started/provisioning.html.md +75 -0
- data/website/docs/source/v2/getting-started/rebuild.html.md +17 -0
- data/website/docs/source/v2/getting-started/synced_folders.html.md +42 -0
- data/website/docs/source/v2/getting-started/teardown.html.md +41 -0
- data/website/docs/source/v2/getting-started/up.html.md +35 -0
- data/website/docs/source/v2/index.html.md +10 -0
- data/website/docs/source/v2/installation/backwards-compatibility.html.md +35 -0
- data/website/docs/source/v2/installation/index.html.md +28 -0
- data/website/docs/source/v2/installation/uninstallation.html.md +39 -0
- data/website/docs/source/v2/installation/upgrading-from-1-0.html.md +26 -0
- data/website/docs/source/v2/installation/upgrading.html.md +20 -0
- data/website/docs/source/v2/multi-machine/index.html.md +105 -0
- data/website/docs/source/v2/networking/basic_usage.html.md +43 -0
- data/website/docs/source/v2/networking/forwarded_ports.html.md +57 -0
- data/website/docs/source/v2/networking/index.html.md +40 -0
- data/website/docs/source/v2/networking/private_network.html.md +48 -0
- data/website/docs/source/v2/networking/public_network.html.md +53 -0
- data/website/docs/source/v2/plugins/commands.html.md +116 -0
- data/website/docs/source/v2/plugins/configuration.html.md +166 -0
- data/website/docs/source/v2/plugins/development-basics.html.md +139 -0
- data/website/docs/source/v2/plugins/guest-capabilities.html.md +100 -0
- data/website/docs/source/v2/plugins/guests.html.md +99 -0
- data/website/docs/source/v2/plugins/hosts.html.md +46 -0
- data/website/docs/source/v2/plugins/index.html.md +21 -0
- data/website/docs/source/v2/plugins/packaging.html.md +102 -0
- data/website/docs/source/v2/plugins/providers.html.md +234 -0
- data/website/docs/source/v2/plugins/provisioners.html.md +64 -0
- data/website/docs/source/v2/plugins/usage.html.md +58 -0
- data/website/docs/source/v2/providers/basic_usage.html.md +67 -0
- data/website/docs/source/v2/providers/configuration.html.md +89 -0
- data/website/docs/source/v2/providers/custom.html.md +9 -0
- data/website/docs/source/v2/providers/default.html.md +22 -0
- data/website/docs/source/v2/providers/index.html.md +23 -0
- data/website/docs/source/v2/providers/installation.html.md +11 -0
- data/website/docs/source/v2/provisioning/ansible.html.md +144 -0
- data/website/docs/source/v2/provisioning/basic_usage.html.md +67 -0
- data/website/docs/source/v2/provisioning/chef_client.html.md +109 -0
- data/website/docs/source/v2/provisioning/chef_solo.html.md +156 -0
- data/website/docs/source/v2/provisioning/index.html.md +28 -0
- data/website/docs/source/v2/provisioning/puppet_agent.html.md +70 -0
- data/website/docs/source/v2/provisioning/puppet_apply.html.md +114 -0
- data/website/docs/source/v2/provisioning/shell.html.md +88 -0
- data/website/docs/source/v2/synced-folders/basic_usage.html.md +53 -0
- data/website/docs/source/v2/synced-folders/index.html.md +17 -0
- data/website/docs/source/v2/synced-folders/nfs.html.md +53 -0
- data/website/docs/source/v2/vagrantfile/index.html.md +75 -0
- data/website/docs/source/v2/vagrantfile/machine_settings.html.md +84 -0
- data/website/docs/source/v2/vagrantfile/ssh_settings.html.md +61 -0
- data/website/docs/source/v2/vagrantfile/vagrant_settings.html.md +19 -0
- data/website/docs/source/v2/vagrantfile/version.html.md +64 -0
- data/website/docs/source/v2/virtualbox/boxes.html.md +71 -0
- data/website/docs/source/v2/virtualbox/configuration.html.md +63 -0
- data/website/docs/source/v2/virtualbox/index.html.md +21 -0
- data/website/docs/source/v2/virtualbox/usage.html.md +12 -0
- data/website/docs/source/v2/vmware/boxes.html.md +107 -0
- data/website/docs/source/v2/vmware/configuration.html.md +91 -0
- data/website/docs/source/v2/vmware/index.html.md +30 -0
- data/website/docs/source/v2/vmware/installation.html.md +40 -0
- data/website/docs/source/v2/vmware/known-issues.html.md +21 -0
- data/website/docs/source/v2/vmware/usage.html.md +27 -0
- data/website/docs/source/v2/why-vagrant/index.html.md +46 -0
- data/website/www/.buildpacks +2 -0
- data/website/www/Gemfile +15 -0
- data/website/www/Gemfile.lock +123 -0
- data/website/www/Procfile +1 -0
- data/website/www/README.md +26 -0
- data/website/www/config.rb +88 -0
- data/website/www/config.ru +39 -0
- data/website/www/helpers/sidebar_helpers.rb +12 -0
- data/website/www/lib/legacy_redirect.rb +32 -0
- data/website/www/source/404.html.erb +11 -0
- data/website/www/source/_sidebar_about.erb +5 -0
- data/website/www/source/_sidebar_blog.erb +11 -0
- data/website/www/source/_sidebar_support.html.erb +6 -0
- data/website/www/source/about.html.markdown +16 -0
- data/website/www/source/blog.html.erb +34 -0
- data/website/www/source/blog/2013-09-16-test.html.markdown +26 -0
- data/website/www/source/blog_feed.xml.builder +23 -0
- data/website/www/source/images/bullet_1.png +0 -0
- data/website/www/source/images/bullet_2.png +0 -0
- data/website/www/source/images/bullet_3.png +0 -0
- data/website/www/source/images/customers.png +0 -0
- data/website/www/source/images/customers_small.png +0 -0
- data/website/www/source/images/footer_background.png +0 -0
- data/website/www/source/images/footer_hashi_logo.png +0 -0
- data/website/www/source/images/footer_vagrant_logo.png +0 -0
- data/website/www/source/images/get_started_background.png +0 -0
- data/website/www/source/images/icon_caution.png +0 -0
- data/website/www/source/images/logo_docs.png +0 -0
- data/website/www/source/images/logo_docs_small.png +0 -0
- data/website/www/source/images/logo_small.png +0 -0
- data/website/www/source/images/logo_vagrant.png +0 -0
- data/website/www/source/images/open_close.png +0 -0
- data/website/www/source/images/search_icon.png +0 -0
- data/website/www/source/images/sidebar_background_docs.png +0 -0
- data/website/www/source/images/sidebar_background_inner.png +0 -0
- data/website/www/source/images/sponsors/fastly.png +0 -0
- data/website/www/source/images/sponsors/kiip.png +0 -0
- data/website/www/source/images/sponsors/softlayer.jpg +0 -0
- data/website/www/source/images/sponsors/typekit.png +0 -0
- data/website/www/source/images/steps_background.png +0 -0
- data/website/www/source/images/vagrant_header_background.png +0 -0
- data/website/www/source/images/vagrant_vmware_background.png +0 -0
- data/website/www/source/index.html.erb +109 -0
- data/website/www/source/javascripts/backstretch.js +4 -0
- data/website/www/source/javascripts/bootstrap.min.js +7 -0
- data/website/www/source/javascripts/fittext.js +43 -0
- data/website/www/source/javascripts/grid-overlay.js +161 -0
- data/website/www/source/javascripts/jquery.js +2 -0
- data/website/www/source/javascripts/less-1.3.0.min.js +9 -0
- data/website/www/source/javascripts/modernizr.js +1384 -0
- data/website/www/source/javascripts/vagrantup.js +58 -0
- data/website/www/source/layouts/blog_post.erb +42 -0
- data/website/www/source/layouts/inner.erb +34 -0
- data/website/www/source/layouts/layout.erb +107 -0
- data/website/www/source/sponsors.html.erb +23 -0
- data/website/www/source/stylesheets/_base.less +326 -0
- data/website/www/source/stylesheets/_components.less +74 -0
- data/website/www/source/stylesheets/_footer.less +101 -0
- data/website/www/source/stylesheets/_media-queries.less +549 -0
- data/website/www/source/stylesheets/_mixins.less +175 -0
- data/website/www/source/stylesheets/_modules.less +37 -0
- data/website/www/source/stylesheets/_nav.less +74 -0
- data/website/www/source/stylesheets/_pages.less +467 -0
- data/website/www/source/stylesheets/_sidebar.less +137 -0
- data/website/www/source/stylesheets/_type.less +36 -0
- data/website/www/source/stylesheets/_variables.less +39 -0
- data/website/www/source/stylesheets/bootstrap.css +5946 -0
- data/website/www/source/stylesheets/vagrantup.less +17 -0
- data/website/www/source/support.html.erb +25 -0
- data/website/www/source/support/community.html.erb +28 -0
- data/website/www/source/support/professional.html.erb +17 -0
- data/website/www/source/vmware/eula.html.md +21 -0
- data/website/www/source/vmware/index.html.erb +185 -0
- data/website/www/source/vmware/privacy-policy.html.md +71 -0
- data/website/www/source/vmware/terms-of-service.html.md +50 -0
- metadata +436 -186
@@ -0,0 +1,58 @@
|
|
1
|
+
// add dropshadow to nav on scroll
|
2
|
+
$(document).ready(function(){
|
3
|
+
$(document).scroll(function() {
|
4
|
+
var top = $(document).scrollTop();
|
5
|
+
if (top > 0) $('nav').addClass("drop-shadow");
|
6
|
+
if (top === 0) $('nav').removeClass("drop-shadow");
|
7
|
+
});
|
8
|
+
});
|
9
|
+
|
10
|
+
// open/close documentation side nav on small screens
|
11
|
+
$(document).ready(function(){
|
12
|
+
$(".toggle").click(function() {
|
13
|
+
$(".sidebar-nav ul").slideToggle('slow');
|
14
|
+
});
|
15
|
+
});
|
16
|
+
|
17
|
+
// Redirect to the proper checkout screen for quantity
|
18
|
+
$(document).ready(function() {
|
19
|
+
var selectedProduct = "";
|
20
|
+
|
21
|
+
function setSelectedProduct() {
|
22
|
+
selectedProduct = $("input[name=product]:checked").val();
|
23
|
+
}
|
24
|
+
|
25
|
+
$(".buy-form input[name=product]").change(function() {
|
26
|
+
setSelectedProduct();
|
27
|
+
|
28
|
+
var text = selectedProduct.charAt(0).toUpperCase() + selectedProduct.slice(1);
|
29
|
+
$("#buy-fusion").text("Buy " + text + " Licenses Now");
|
30
|
+
});
|
31
|
+
|
32
|
+
$("#buy-fusion").click(function() {
|
33
|
+
var seats = parseInt($("#seats").val(), 10);
|
34
|
+
if (isNaN(seats)) {
|
35
|
+
alert("The number of seats you want to purchase must be a number.");
|
36
|
+
return;
|
37
|
+
} else if (seats <= 0) {
|
38
|
+
alert("The number of seats you want must be greater than zero.");
|
39
|
+
return;
|
40
|
+
}
|
41
|
+
|
42
|
+
var productId = "";
|
43
|
+
if (selectedProduct == "fusion") {
|
44
|
+
productId = "279661674";
|
45
|
+
} else if (selectedProduct == "workstation") {
|
46
|
+
productId = "302167489";
|
47
|
+
} else {
|
48
|
+
alert("Unknown product selected. Please refresh and try again.");
|
49
|
+
return;
|
50
|
+
}
|
51
|
+
|
52
|
+
window.location = "http://shopify.hashicorp.com/cart/" + productId + ":" + seats;
|
53
|
+
});
|
54
|
+
|
55
|
+
if ($("#buy-fusion").length > 0) {
|
56
|
+
setSelectedProduct();
|
57
|
+
}
|
58
|
+
});
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<% wrap_layout :layout do %>
|
2
|
+
<div class="page inner">
|
3
|
+
<!-- background color -->
|
4
|
+
<div class="page-background"></div>
|
5
|
+
|
6
|
+
<div class="container">
|
7
|
+
<div class="row">
|
8
|
+
|
9
|
+
<div class="sidebar span3">
|
10
|
+
<!-- side nav -->
|
11
|
+
<aside class="sidebar-nav">
|
12
|
+
|
13
|
+
<!-- page title -->
|
14
|
+
<h1 class="all-caps">Blog Post</h1>
|
15
|
+
<%= partial "sidebar_blog" %>
|
16
|
+
</aside> <!-- /.sidebar -->
|
17
|
+
</div> <!-- /.sidebar -->
|
18
|
+
|
19
|
+
<div class="Modules blog-post page-contents span9 offset3">
|
20
|
+
<!-- start page content -->
|
21
|
+
<div class="row">
|
22
|
+
<div class="span7 offset1">
|
23
|
+
<article>
|
24
|
+
<div class="meta">
|
25
|
+
<span class="meta date">
|
26
|
+
<%= current_article.date.strftime('%b %e %Y') %>
|
27
|
+
</span>
|
28
|
+
<% if current_article.data.author %>
|
29
|
+
by <a href="<%= current_article.data.author_url %>"><%= current_article.data.author %></a>
|
30
|
+
<% end %>
|
31
|
+
</div>
|
32
|
+
<h2><%= current_article.title %></h2>
|
33
|
+
<%= yield %>
|
34
|
+
</article>
|
35
|
+
</div> <!-- /span -->
|
36
|
+
</div> <!-- /row -->
|
37
|
+
<!-- end page content -->
|
38
|
+
</div> <!-- /.span8 -->
|
39
|
+
</div> <!-- /.row -->
|
40
|
+
</div> <!-- /.container -->
|
41
|
+
</div> <!-- /.page.inner -->
|
42
|
+
<% end %>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<% wrap_layout :layout do %>
|
2
|
+
<div class="page inner">
|
3
|
+
<!-- background color -->
|
4
|
+
<div class="page-background"></div>
|
5
|
+
|
6
|
+
<div class="container">
|
7
|
+
<div class="row">
|
8
|
+
|
9
|
+
<div class="sidebar span3">
|
10
|
+
<!-- side nav -->
|
11
|
+
<aside class="sidebar-nav">
|
12
|
+
|
13
|
+
<!-- page title -->
|
14
|
+
<h1 class="all-caps"><%= current_page.data.sidebar_title || "" %></h1>
|
15
|
+
|
16
|
+
<% if current_page.data.sidebar_template %>
|
17
|
+
<%= partial "sidebar_#{current_page.data.sidebar_template}" %>
|
18
|
+
<% end %>
|
19
|
+
</aside> <!-- /.sidebar -->
|
20
|
+
</div> <!-- /.sidebar -->
|
21
|
+
|
22
|
+
<div class="page-contents span9 offset3">
|
23
|
+
<!-- start page content -->
|
24
|
+
<div class="row">
|
25
|
+
<div class="span7 offset1">
|
26
|
+
<%= yield %>
|
27
|
+
</div> <!-- /span -->
|
28
|
+
</div> <!-- /row -->
|
29
|
+
<!-- end page content -->
|
30
|
+
</div> <!-- /.span8 -->
|
31
|
+
</div> <!-- /.row -->
|
32
|
+
</div> <!-- /.container -->
|
33
|
+
</div> <!-- /.page.inner -->
|
34
|
+
<% end %>
|
@@ -0,0 +1,107 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title><%= current_page.data.page_title ? "#{current_page.data.page_title} - " : "" %>Vagrant</title>
|
5
|
+
|
6
|
+
<!-- meta -->
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
8
|
+
|
9
|
+
<!-- lib styles -->
|
10
|
+
<%= stylesheet_link_tag "bootstrap", "vagrantup" %>
|
11
|
+
|
12
|
+
<!-- lib js -->
|
13
|
+
<%= javascript_include_tag "jquery" %>
|
14
|
+
<%= javascript_include_tag "modernizr" %>
|
15
|
+
<%= javascript_include_tag "bootstrap.min" %>
|
16
|
+
<%= javascript_include_tag "backstretch" %>
|
17
|
+
<%= javascript_include_tag "vagrantup" %>
|
18
|
+
|
19
|
+
<!-- fonts -->
|
20
|
+
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
|
21
|
+
<script type="text/javascript" src="http://use.typekit.net/xfs6zus.js"></script>
|
22
|
+
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
|
23
|
+
|
24
|
+
<!-- Google analytics -->
|
25
|
+
<script type="text/javascript">
|
26
|
+
|
27
|
+
var _gaq = _gaq || [];
|
28
|
+
_gaq.push(['_setAccount', 'UA-15091924-1']);
|
29
|
+
_gaq.push(['_trackPageview']);
|
30
|
+
|
31
|
+
(function() {
|
32
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
33
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
34
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
35
|
+
})();
|
36
|
+
|
37
|
+
</script>
|
38
|
+
</head>
|
39
|
+
<body>
|
40
|
+
|
41
|
+
<!-- wrap everything -->
|
42
|
+
<div class="wrapper">
|
43
|
+
|
44
|
+
<!-- nav -->
|
45
|
+
|
46
|
+
<nav>
|
47
|
+
<!-- vagrant logo -->
|
48
|
+
<a class="vagrant-logo" href="/">Vagrant</a>
|
49
|
+
<!-- nav -->
|
50
|
+
<ul class="pull-right unstyled">
|
51
|
+
<li class="pill"><a href="/vmware">VMware Integration</a></li>
|
52
|
+
<li><a href="http://downloads.vagrantup.com/">Downloads</a></li>
|
53
|
+
<li><a href="http://docs.vagrantup.com/">Documentation</a></li>
|
54
|
+
<li><a href="/support.html">Support</a></li>
|
55
|
+
<li><a href="/about.html">About</a></li>
|
56
|
+
</ul>
|
57
|
+
</nav>
|
58
|
+
|
59
|
+
<%= yield %>
|
60
|
+
|
61
|
+
<!-- footer -->
|
62
|
+
<footer>
|
63
|
+
<div class="container">
|
64
|
+
<div class="row">
|
65
|
+
<div class="span12">
|
66
|
+
|
67
|
+
<ul class="unstyled footer-nav">
|
68
|
+
<li><a href="http://docs.vagrantup.com/">Documentation</a></li>
|
69
|
+
<li><a href="/about.html">About</a></li>
|
70
|
+
<li><a href="/support.html">Support</a></li>
|
71
|
+
<a href="http://downloads.vagrantup.com/">
|
72
|
+
<li class="button inline-button">Download</li>
|
73
|
+
</a>
|
74
|
+
</ul>
|
75
|
+
|
76
|
+
<ul class="unstyled logos">
|
77
|
+
<a href="http://www.vagrantup.com">
|
78
|
+
<li class="vagrant-logo-monochrome"></li>
|
79
|
+
</a>
|
80
|
+
<li><span>by</span></li>
|
81
|
+
<a href="http://www.hashicorp.com">
|
82
|
+
<li class="hashi-logo-monochrome "></li>
|
83
|
+
</a>
|
84
|
+
</ul> <!-- /span -->
|
85
|
+
|
86
|
+
</div> <!-- /span -->
|
87
|
+
</div> <!-- /row -->
|
88
|
+
|
89
|
+
<div class="row">
|
90
|
+
<h6 class="legal">
|
91
|
+
© 2013 HashiCorp
|
92
|
+
</h6>
|
93
|
+
</div> <!-- row -->
|
94
|
+
</div> <!-- container -->
|
95
|
+
</footer>
|
96
|
+
|
97
|
+
<!-- close .wrapper -->
|
98
|
+
</div>
|
99
|
+
|
100
|
+
<!-- load scripts -->
|
101
|
+
<!-- load full-width image into any div with class="big-background -->
|
102
|
+
<script>
|
103
|
+
$(".big-background").backstretch("assets/photos/full_width.jpg");
|
104
|
+
</script>
|
105
|
+
</body>
|
106
|
+
</html>
|
107
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
layout: "inner"
|
3
|
+
sidebar_current: "about-sponsors"
|
4
|
+
sidebar_title: "About"
|
5
|
+
sidebar_template: "about"
|
6
|
+
---
|
7
|
+
|
8
|
+
<h2>Project Sponsors</h2>
|
9
|
+
<p>
|
10
|
+
The companies below deserve special recognition for their contributions
|
11
|
+
to Vagrant. These companies consistently provide resources which help the
|
12
|
+
project run smoothly by supporting hosting costs, providing testing machines,
|
13
|
+
donating their services, etc.
|
14
|
+
|
15
|
+
<div class="Modules sponsors">
|
16
|
+
<ul>
|
17
|
+
<li><a href="http://fastly.com"><%= image_tag "/images/sponsors/fastly.png" %></a></li>
|
18
|
+
<li><a href="http://kiip.com"><%= image_tag "/images/sponsors/kiip.png" %></a></li>
|
19
|
+
<li><a href="http://typekit.com"><%= image_tag "/images/sponsors/typekit.png" %></a></li>
|
20
|
+
<li><a href="http://softlayer.com"><%= image_tag "/images/sponsors/softlayer.jpg" %></a></li>
|
21
|
+
</ul>
|
22
|
+
</div>
|
23
|
+
</p>
|
@@ -0,0 +1,326 @@
|
|
1
|
+
html {
|
2
|
+
font-size: 100%;
|
3
|
+
-webkit-text-size-adjust: 100%;
|
4
|
+
-ms-text-size-adjust: 100%;
|
5
|
+
text-rendering: optimizeLegibility;
|
6
|
+
-webkit-tap-highlight-color: transparent;
|
7
|
+
}
|
8
|
+
|
9
|
+
body {
|
10
|
+
font-family: @sans-serif-stack;
|
11
|
+
font-size: @base-font-size;
|
12
|
+
line-height: @base-line-height;
|
13
|
+
color: @black;
|
14
|
+
background-color: @white;
|
15
|
+
letter-spacing: 2px;
|
16
|
+
.museo-sans-regular;
|
17
|
+
}
|
18
|
+
|
19
|
+
.wrapper {
|
20
|
+
margin-top: 80px;
|
21
|
+
}
|
22
|
+
|
23
|
+
.container {
|
24
|
+
z-index: 999; //keep content on top
|
25
|
+
position: relative;
|
26
|
+
}
|
27
|
+
|
28
|
+
h1,
|
29
|
+
h2,
|
30
|
+
h3,
|
31
|
+
h4,
|
32
|
+
h5,
|
33
|
+
h6 {
|
34
|
+
margin: 0;
|
35
|
+
padding: 0;
|
36
|
+
color: inherit;
|
37
|
+
text-rendering: optimizelegibility;
|
38
|
+
.museo-sans-bold;
|
39
|
+
}
|
40
|
+
|
41
|
+
h1 {
|
42
|
+
@font-size: 70px;
|
43
|
+
font-size: @font-size;
|
44
|
+
line-height: 80px;
|
45
|
+
letter-spacing: 3px;
|
46
|
+
|
47
|
+
span {
|
48
|
+
font-size: @headline-span-size;
|
49
|
+
display: block;
|
50
|
+
}
|
51
|
+
|
52
|
+
&.all-caps {
|
53
|
+
text-transform: uppercase;
|
54
|
+
text-align: center;
|
55
|
+
font-size: 40px;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
h2 {
|
60
|
+
@font-size: 30px;
|
61
|
+
font-size: @font-size;
|
62
|
+
line-height: 35px;
|
63
|
+
}
|
64
|
+
|
65
|
+
h3 {
|
66
|
+
@font-size: 30px;
|
67
|
+
font-size: @font-size;
|
68
|
+
line-height: @font-size;
|
69
|
+
}
|
70
|
+
|
71
|
+
h4 {
|
72
|
+
@font-size: 24px;
|
73
|
+
font-size: @font-size;
|
74
|
+
line-height: @font-size;
|
75
|
+
}
|
76
|
+
|
77
|
+
h5 {
|
78
|
+
@font-size: 20px;
|
79
|
+
font-size: @font-size;
|
80
|
+
line-height: @font-size;
|
81
|
+
}
|
82
|
+
|
83
|
+
h6 {
|
84
|
+
@font-size: 12px;
|
85
|
+
font-size: @font-size;
|
86
|
+
line-height: @font-size;
|
87
|
+
}
|
88
|
+
|
89
|
+
p {
|
90
|
+
letter-spacing: 1px;
|
91
|
+
line-height: 32px;
|
92
|
+
|
93
|
+
a {
|
94
|
+
color: @docs-blue;
|
95
|
+
text-decoration: none;
|
96
|
+
border-bottom: 1px solid @docs-blue;
|
97
|
+
|
98
|
+
&:hover {
|
99
|
+
text-decoration: none;
|
100
|
+
color: darken(@blue, 10%);
|
101
|
+
border-bottom: 1px solid darken(@blue, 10%);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
a {
|
107
|
+
color: inherit;
|
108
|
+
text-decoration: none;
|
109
|
+
|
110
|
+
|
111
|
+
&:hover {
|
112
|
+
text-decoration: none;
|
113
|
+
color: @purple;
|
114
|
+
.animate-text-color;
|
115
|
+
}
|
116
|
+
|
117
|
+
&:active {
|
118
|
+
color: @blue;
|
119
|
+
}
|
120
|
+
|
121
|
+
&:visited {
|
122
|
+
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
ul {
|
127
|
+
|
128
|
+
}
|
129
|
+
|
130
|
+
li {
|
131
|
+
line-height: @base-line-height;
|
132
|
+
}
|
133
|
+
|
134
|
+
blockquote {
|
135
|
+
border: none;
|
136
|
+
margin: 60px;
|
137
|
+
|
138
|
+
p { // blockquote p
|
139
|
+
font-size: @base-font-size * 2;
|
140
|
+
line-height: @base-line-height * 2;
|
141
|
+
font-style: italic;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
strong {
|
146
|
+
.museo-sans-bold;
|
147
|
+
}
|
148
|
+
|
149
|
+
em {
|
150
|
+
.museo-sans-regular-italic;
|
151
|
+
}
|
152
|
+
|
153
|
+
br {
|
154
|
+
display:block;
|
155
|
+
line-height: (@baseline * 2);
|
156
|
+
}
|
157
|
+
|
158
|
+
pre,
|
159
|
+
code {
|
160
|
+
font-family: @mono-stack;
|
161
|
+
}
|
162
|
+
|
163
|
+
code {
|
164
|
+
font-size: inherit;
|
165
|
+
}
|
166
|
+
|
167
|
+
pre {
|
168
|
+
border: none;
|
169
|
+
font-size: @base-font-size;
|
170
|
+
background: @black;
|
171
|
+
color: @white;
|
172
|
+
padding: 20px;
|
173
|
+
line-height: @base-line-height;
|
174
|
+
|
175
|
+
span {
|
176
|
+
color: @code-highlight-text;
|
177
|
+
}
|
178
|
+
}
|
179
|
+
|
180
|
+
hr {
|
181
|
+
|
182
|
+
}
|
183
|
+
|
184
|
+
.vr {
|
185
|
+
width: 2px;
|
186
|
+
height: 100%;
|
187
|
+
}
|
188
|
+
|
189
|
+
form {
|
190
|
+
|
191
|
+
}
|
192
|
+
|
193
|
+
input {
|
194
|
+
letter-spacing: 3px;
|
195
|
+
|
196
|
+
&:focus {
|
197
|
+
outline: none;
|
198
|
+
}
|
199
|
+
}
|
200
|
+
|
201
|
+
::-webkit-input-placeholder {
|
202
|
+
overflow: visible;
|
203
|
+
padding-top: 3px;
|
204
|
+
color: @light-gray-text;
|
205
|
+
}
|
206
|
+
|
207
|
+
input:-moz-placeholder {
|
208
|
+
overflow: visible;
|
209
|
+
padding-top: 3px;
|
210
|
+
color: @light-gray-text;
|
211
|
+
}
|
212
|
+
|
213
|
+
|
214
|
+
/* type and styles */
|
215
|
+
.meta,
|
216
|
+
.legal,
|
217
|
+
.date {
|
218
|
+
color: @medium-gray-text;
|
219
|
+
line-height: @base-line-height;
|
220
|
+
.museo-sans-regular;
|
221
|
+
}
|
222
|
+
|
223
|
+
.date {
|
224
|
+
text-transform: uppercase;
|
225
|
+
}
|
226
|
+
|
227
|
+
.button {
|
228
|
+
color: @white;
|
229
|
+
text-align: center;
|
230
|
+
background-color: @primary-button-color;
|
231
|
+
display: block;
|
232
|
+
padding: 15px 0;
|
233
|
+
margin-top: 20px !important;
|
234
|
+
text-transform: uppercase;
|
235
|
+
font-size: 25px;
|
236
|
+
letter-spacing: 5px;
|
237
|
+
.museo-sans-light;
|
238
|
+
.rounded;
|
239
|
+
.hover;
|
240
|
+
|
241
|
+
&.inline-button {
|
242
|
+
background-color: @vagrant-blue;
|
243
|
+
padding: 5px 20px;
|
244
|
+
color: @white !important;
|
245
|
+
font-size: 15px;
|
246
|
+
letter-spacing: 1px;
|
247
|
+
.rounded;
|
248
|
+
|
249
|
+
a,
|
250
|
+
a:hover {
|
251
|
+
color: @white;
|
252
|
+
}
|
253
|
+
}
|
254
|
+
|
255
|
+
&.white-button {
|
256
|
+
background: fade(@white, 20%);
|
257
|
+
|
258
|
+
&:hover {
|
259
|
+
background: fade(@white, 30%);
|
260
|
+
}
|
261
|
+
}
|
262
|
+
|
263
|
+
&.secondary-button {
|
264
|
+
background: @light-gray;
|
265
|
+
|
266
|
+
&:hover {
|
267
|
+
background: @purple;
|
268
|
+
}
|
269
|
+
}
|
270
|
+
|
271
|
+
&.with-carat span {
|
272
|
+
margin-right: -10px; //recenter text if there's a carat after text
|
273
|
+
|
274
|
+
}
|
275
|
+
|
276
|
+
span {
|
277
|
+
// button text styles can go here
|
278
|
+
}
|
279
|
+
|
280
|
+
&:hover {
|
281
|
+
background-color: @purple;
|
282
|
+
.animate-background-color;
|
283
|
+
}
|
284
|
+
|
285
|
+
&:active {
|
286
|
+
|
287
|
+
}
|
288
|
+
|
289
|
+
&.disabled {
|
290
|
+
background-color: @light-gray-background;
|
291
|
+
}
|
292
|
+
|
293
|
+
}
|
294
|
+
|
295
|
+
a.read-more {
|
296
|
+
color: @blue;
|
297
|
+
|
298
|
+
&:hover {
|
299
|
+
color: darken(@blue, 10%);
|
300
|
+
}
|
301
|
+
}
|
302
|
+
|
303
|
+
// misc. styles
|
304
|
+
.loading {
|
305
|
+
text-align: center;
|
306
|
+
font-size: @base-font-size;
|
307
|
+
text-transform: uppercase;
|
308
|
+
letter-spacing: 5px;
|
309
|
+
color: @medium-gray-text;
|
310
|
+
padding: 30px 0 20px;
|
311
|
+
}
|
312
|
+
|
313
|
+
.pinned {
|
314
|
+
position:fixed;
|
315
|
+
}
|
316
|
+
|
317
|
+
.footnote {
|
318
|
+
font-size: 14px;
|
319
|
+
}
|
320
|
+
|
321
|
+
.anchor {
|
322
|
+
display: block;
|
323
|
+
position: relative;
|
324
|
+
top: -80px;
|
325
|
+
visibility: hidden;
|
326
|
+
}
|