Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3.  
  4. Vagrant.configure(2) do |config|
  5.  
  6. config.vm.box = "hashicorp/precise32"
  7. config.vm.synced_folder "./shared", "/st/data", :nfs => true
  8. config.vm.network "private_network", ip: "192.168.33.10"
  9. end
  10.  
  11. vagrant reload
  12. ==> default: Attempting graceful shutdown of VM...
  13. ==> default: Checking if box 'hashicorp/precise32' is up to date...
  14. ==> default: Clearing any previously set forwarded ports...
  15. ==> default: Clearing any previously set network interfaces...
  16. ==> default: Preparing network interfaces based on configuration...
  17. default: Adapter 1: nat
  18. default: Adapter 2: hostonly
  19. ==> default: Forwarding ports...
  20. default: 22 => 2222 (adapter 1)
  21. ==> default: Booting VM...
  22. ==> default: Waiting for machine to boot. This may take a few minutes...
  23. default: SSH address: 127.0.0.1:2222
  24. default: SSH username: vagrant
  25. default: SSH auth method: private key
  26. default: Warning: Connection timeout. Retrying...
  27. ==> default: Machine booted and ready!
  28. GuestAdditions 5.0.6 running --- OK.
  29. ==> default: Checking for guest additions in VM...
  30. ==> default: Configuring and enabling network interfaces...
  31. ==> default: Exporting NFS shared folders...
  32. ==> default: Preparing to edit /etc/exports. Administrator privileges will be required...
  33. ==> default: Mounting NFS shared folders...
  34. ==> default: Mounting shared folders...
  35. default: /vagrant => /Users/stk/Documents/vagrant
  36. ==> default: Check for insecure vagrant key: OK (not present)
  37. ==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
  38. ==> default: flag to force provisioning. Provisioners marked to run always will still run.
  39.  
  40. vagrant -v
  41. Vagrant 1.7.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement