Closed rldourado closed 9 years ago
Hi @rldourado,
I am sorry you are having issues with Vagrant. Could you please share your Vagrantfile
and the result of the command in debug mode?
Hi @sethvargo ,
This is my VagrantFile:
# -*- mode: ruby -*-
# vi: set ft=ruby :
OS_TYPE = 'windows'
WEBSERVER_PORT = 80
if ( RUBY_PLATFORM.include? 'darwin' )
OS_TYPE = 'macos'
elsif ( /cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM ) == nil
OS_TYPE = '*nix'
end
if OS_TYPE == 'macos'
WEBSERVER_PORT = 8080
end
VAGRANTFILE_API_VERSION = '2'
ENVIRONMENT_NAME = 'drm-erp'
print "\n"
puts "Ruby Platform : #{RUBY_PLATFORM}\n"
puts "OS Type : #{OS_TYPE}\n"
puts "Webserver Port : #{WEBSERVER_PORT}\n"
puts "Vagrant API Version : #{VAGRANTFILE_API_VERSION}\n"
puts "Environment Name : #{ENVIRONMENT_NAME}\n"
print "\n"
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu.14.10"
config.vm.define ENVIRONMENT_NAME do |t|
end
config.vm.network "forwarded_port", guest: 80 , host: WEBSERVER_PORT, auto_correct: true
config.vm.network "forwarded_port", guest: 8000, host: 8000 , auto_correct: true
config.vm.network "forwarded_port", guest: 5432, host: 5432 , auto_correct: true
config.vm.network "public_network", bridge: "en0: Wi-Fi (AirPort)"
config.vm.synced_folder "./" , "/vagrant", disabled: true
config.vm.synced_folder "./erp", "/var/erp", disabled: false
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.name = ENVIRONMENT_NAME
vb.memory = 1024
vb.cpus = 2
vb.customize [ "modifyvm", :id, "--natdnshostresolver1", "on" ]
end
config.vm.provision "puppet" do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "default.pp"
puppet.options = "--verbose"
end
config.ssh.username = "vagrant"
config.ssh.password = "vagrant"
config.trigger.after [ :provision, :up, :reload ] do
if OS_TYPE == 'macos'
system( 'sudo pfctl -ef /etc/pf.anchors/com.vagrant; echo "==> Fowarding Ports: 80 -> 8080 / 443 -> 8443"' )
## system( 'echo "rdr pass on lo0 inet proto tcp from any to 127.0.0.1 port 80 -> 127.0.0.1 port 8080" | sudo pfctl -f - > /dev/null 2>&1; echo "==> Fowarding Ports: 80 -> 8080"' )
end
end
config.trigger.after [ :halt, :destroy, :suspend ] do
if OS_TYPE == 'macos'
system( 'sudo pfctl -ef /etc/pf.anchors/com.apple; echo "==> Removing Port Forwarding"' )
## system( "sudo pfctl -f /etc/pf.conf > /dev/null 2>&1; echo '==> Removing Port Forwarding'" )
end
end
end
And this is the debug output:
rldourado:drm-erp/ (master✗) $ vagrant up --debug [8:58:45]
INFO global: Vagrant version: 1.7.2
INFO global: Ruby version: 2.0.0
INFO global: RubyGems version: 2.0.14
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/bin/../embedded/gems/gems/vagrant-1.7.2/bin/vagrant"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/bin/../embedded"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_DETECTED_OS="Darwin"
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
INFO global: VAGRANT_LOG="debug"
INFO global: Plugins:
INFO global: - bundler = 1.7.11
INFO global: - i18n = 0.6.11
INFO global: - json = 1.8.2
INFO global: - log4r = 1.1.10
INFO global: - micromachine = 1.1.0
INFO global: - mime-types = 1.25.1
INFO global: - rdoc = 4.2.0
INFO global: - rest-client = 1.6.8
INFO global: - vagrant-cachier = 1.2.0
INFO global: - vagrant-share = 1.1.3
INFO global: - vagrant-triggers = 0.5.0
INFO global: - vagrant-vbguest = 0.10.0
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/box/plugin.rb
INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/destroy/plugin.rb
INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/global-status/plugin.rb
INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/halt/plugin.rb
INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/help/plugin.rb
INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/init/plugin.rb
INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/list-commands/plugin.rb
INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/login/plugin.rb
INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/package/plugin.rb
INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/plugin/plugin.rb
INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/provision/plugin.rb
INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/push/plugin.rb
INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/rdp/plugin.rb
INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/reload/plugin.rb
INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/resume/plugin.rb
INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/ssh/plugin.rb
INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/ssh_config/plugin.rb
INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/status/plugin.rb
INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/suspend/plugin.rb
INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/up/plugin.rb
INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/version/plugin.rb
INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/communicators/ssh/plugin.rb
INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/communicators/winrm/plugin.rb
INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/arch/plugin.rb
INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/coreos/plugin.rb
INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/darwin/plugin.rb
INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/debian/plugin.rb
INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/esxi/plugin.rb
INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/fedora/plugin.rb
INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/freebsd/plugin.rb
INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/funtoo/plugin.rb
INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/gentoo/plugin.rb
INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/linux/plugin.rb
INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/mint/plugin.rb
INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/netbsd/plugin.rb
INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/nixos/plugin.rb
INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/omnios/plugin.rb
INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/openbsd/plugin.rb
INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/pld/plugin.rb
INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/redhat/plugin.rb
INFO manager: Registered plugin: RedHat guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/smartos/plugin.rb
INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/solaris/plugin.rb
INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/solaris11/plugin.rb
INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/suse/plugin.rb
INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/tinycore/plugin.rb
INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/ubuntu/plugin.rb
INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/windows/plugin.rb
INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/arch/plugin.rb
INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/bsd/plugin.rb
INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/darwin/plugin.rb
INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/freebsd/plugin.rb
INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/gentoo/plugin.rb
INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/linux/plugin.rb
INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/null/plugin.rb
INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/redhat/plugin.rb
INFO manager: Registered plugin: Red Hat host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/slackware/plugin.rb
INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/suse/plugin.rb
INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/windows/plugin.rb
INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/kernel_v1/plugin.rb
INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/kernel_v2/plugin.rb
INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/docker/plugin.rb
INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/hyperv/plugin.rb
INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/virtualbox/plugin.rb
INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/ansible/plugin.rb
INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/cfengine/plugin.rb
INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/chef/plugin.rb
INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/docker/plugin.rb
INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/file/plugin.rb
INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/puppet/plugin.rb
INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/salt/plugin.rb
INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/shell/plugin.rb
INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/atlas/plugin.rb
INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/ftp/plugin.rb
INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/heroku/plugin.rb
INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/local-exec/plugin.rb
INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/noop/plugin.rb
INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/nfs/plugin.rb
INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/rsync/plugin.rb
INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/smb/plugin.rb
INFO manager: Registered plugin: SMB synced folders
INFO global: Loading plugins!
INFO manager: Registered plugin: vagrant-share
INFO manager: Registered plugin: Triggers
INFO manager: Registered plugin: vagrant-cachier
INFO manager: Registered plugin: vagrant-vbguest
INFO vagrant: `vagrant` invoked: ["up", "--debug"]
DEBUG vagrant: Creating Vagrant environment
INFO environment: Environment initialized (#<Vagrant::Environment:0x00000102247810>)
INFO environment: - cwd: /Volumes/StorEDGE/drm-erp
INFO environment: Home path: /Users/rldourado/.vagrant.d
INFO environment: Local data path: /Volumes/StorEDGE/drm-erp/.vagrant
DEBUG environment: Creating: /Volumes/StorEDGE/drm-erp/.vagrant
INFO environment: Running hook: environment_plugins_loaded
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x000001023e5cd0>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100a16b88>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100a678a8>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100a9c0d0>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100a9c0d0>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100a678a8>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100a16b88>
INFO environment: Running hook: environment_load
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 6 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000102177750>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100b976b0>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x0000010285abf8>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x000001028505e0>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x000001028505e0>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x0000010285abf8>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100b976b0>
INFO cli: CLI: [] "up" []
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command []
DEBUG command: 'Up' each target VM...
INFO loader: Set :root = #<Pathname:/Volumes/StorEDGE/drm-erp/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:/Volumes/StorEDGE/drm-erp/Vagrantfile>
DEBUG loader: Load procs for pathname: /Volumes/StorEDGE/drm-erp/Vagrantfile
/Volumes/StorEDGE/drm-erp/Vagrantfile:8: warning: already initialized constant OS_TYPE
/Volumes/StorEDGE/drm-erp/Vagrantfile:4: warning: previous definition of OS_TYPE was here
/Volumes/StorEDGE/drm-erp/Vagrantfile:14: warning: already initialized constant WEBSERVER_PORT
/Volumes/StorEDGE/drm-erp/Vagrantfile:5: warning: previous definition of WEBSERVER_PORT was here
Ruby Platform : universal.x86_64-darwin12.5.0
OS Type : macos
Webserver Port : 8080
Vagrant API Version : 2
Environment Name : drm-erp
INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG provisioner: Provisioner defined:
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command: -- names: ["drm-erp"]
DEBUG command: -- options: {:provider=>nil}
DEBUG command: Finding machine that match name: drm-erp
INFO command: Active machine found with name drm-erp. Using provider: virtualbox
INFO environment: Getting machine: drm-erp (virtualbox)
INFO environment: Uncached load of machine.
INFO base: VBoxManage path: VBoxManage
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.24r98716
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.24
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
INFO base: VBoxManage path: VBoxManage
INFO loader: Set "2153491280_machine_drm-erp" = [["2", #<Proc:0x000001022ce860@/Volumes/StorEDGE/drm-erp/Vagrantfile:42>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x000001022ce860@/Volumes/StorEDGE/drm-erp/Vagrantfile:42>]
INFO loader: Loading configuration in order: [:home, :root, "2153491280_machine_drm-erp"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 2153491280_machine_drm-erp (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
INFO box_collection: Box found: ubuntu.14.10 (virtualbox)
INFO loader: Set :"2152547380_ubuntu.14.10_virtualbox" = #<Pathname:/Users/rldourado/.vagrant.d/boxes/ubuntu.14.10/0/virtualbox/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:/Users/rldourado/.vagrant.d/boxes/ubuntu.14.10/0/virtualbox/Vagrantfile>
DEBUG loader: Load procs for pathname: /Users/rldourado/.vagrant.d/boxes/ubuntu.14.10/0/virtualbox/Vagrantfile
INFO loader: Loading configuration in order: [:"2152547380_ubuntu.14.10_virtualbox", :home, :root, "2153491280_machine_drm-erp"]
DEBUG loader: Loading from: 2152547380_ubuntu.14.10_virtualbox (evaluating)
DEBUG loader: Upgrading config from version 1 to 2
DEBUG loader: Upgrading config to version 2
DEBUG loader: Upgraded to version 2 with 0 warnings and 0 errors
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 2153491280_machine_drm-erp (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
INFO machine: Initializing machine: drm-erp
INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
INFO machine: - Box: #<Vagrant::Box:0x00000100ae7648>
INFO machine: - Data dir: /Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: "05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
INFO base: VBoxManage path: VBoxManage
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.24r98716
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.24
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
INFO base: VBoxManage path: VBoxManage
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name: drm-erp
Groups: /
Guest OS: Ubuntu (64 bit)
UUID: 05de24c4-8ff9-4426-8efe-b6b69fd57f5c
Config file: /Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox
Snapshot folder: /Volumes/StorEDGE/VMs/drm-erp/Snapshots
Log folder: /Volumes/StorEDGE/VMs/drm-erp/Logs
Hardware UUID: 05de24c4-8ff9-4426-8efe-b6b69fd57f5c
Memory size: 1024MB
Page Fusion: off
VRAM size: 12MB
CPU exec cap: 100%
HPET: off
Chipset: piix3
Firmware: BIOS
Number of CPUs: 2
PAE: off
Long Mode: on
Synthetic CPU: off
CPUID overrides: None
Boot menu mode: message and menu
Boot Device (1): HardDisk
Boot Device (2): Not Assigned
Boot Device (3): Not Assigned
Boot Device (4): Not Assigned
ACPI: on
IOAPIC: on
Time offset: 0ms
RTC: UTC
Hardw. virt.ext: on
Nested Paging: on
Large Pages: off
VT-x VPID: on
VT-x unr. exec.: on
State: powered off (since 2015-03-09T11:58:31.000000000)
Monitor count: 1
3D Acceleration: off
2D Video Acceleration: off
Teleporter Enabled: off
Teleporter Port: 0
Teleporter Address:
Teleporter Password:
Tracing Enabled: off
Allow Tracing to Access VM: off
Tracing Configuration:
Autostart Enabled: off
Autostart Delay: 0
Default Frontend:
Storage Controller Name (0): SATAController
Storage Controller Type (0): IntelAhci
Storage Controller Instance Number (0): 0
Storage Controller Max Port Count (0): 30
Storage Controller Port Count (0): 1
Storage Controller Bootable (0): on
SATAController (0, 0): /Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk (UUID: 24da370e-3f77-476e-a8f5-b3552bec305f)
NIC 1: MAC: 080027E422A5, Attachment: NAT, Cable connected: on, Trace: off (file: none), Type: 82540EM, Reported speed: 0 Mbps, Boot priority: 0, Promisc Policy: deny, Bandwidth group: none
NIC 1 Settings: MTU: 0, Socket (send: 64, receive: 64), TCP Window (send:64, receive: 64)
NIC 1 Rule(0): name = ssh, protocol = tcp, host ip = 127.0.0.1, host port = 2222, guest ip = , guest port = 22
NIC 1 Rule(1): name = tcp5432, protocol = tcp, host ip = , host port = 5432, guest ip = , guest port = 5432
NIC 1 Rule(2): name = tcp8000, protocol = tcp, host ip = , host port = 8000, guest ip = , guest port = 8000
NIC 1 Rule(3): name = tcp8080, protocol = tcp, host ip = , host port = 8080, guest ip = , guest port = 80
NIC 2: MAC: 080027278746, Attachment: Bridged Interface 'en0: Wi-Fi (AirPort)', Cable connected: on, Trace: off (file: none), Type: 82540EM, Reported speed: 0 Mbps, Boot priority: 0, Promisc Policy: deny, Bandwidth group: none
NIC 3: disabled
NIC 4: disabled
NIC 5: disabled
NIC 6: disabled
NIC 7: disabled
NIC 8: disabled
Pointing Device: PS/2 Mouse
Keyboard Device: PS/2 Keyboard
UART 1: disabled
UART 2: disabled
LPT 1: disabled
LPT 2: disabled
Audio: disabled
Clipboard Mode: Bidirectional
Drag'n'drop Mode: disabled
VRDE: disabled
USB: disabled
EHCI: disabled
USB Device Filters:
<none>
Available remote USB devices:
<none>
Currently Attached USB Devices:
<none>
Bandwidth groups: <none>
Shared folders:
Name: 'var_erp', Host path: '/Volumes/StorEDGE/drm-erp/erp' (machine mapping), writable
Name: 'tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3', Host path: '/Volumes/StorEDGE/drm-erp/puppet/manifests' (machine mapping), writable
Name: 'tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8', Host path: '/Volumes/StorEDGE/drm-erp/puppet/modules' (machine mapping), writable
VRDE Connection: not active
Clients so far: 0
Video capturing: not active
Capture screens: 0
Capture file: /Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm
Capture dimensions: 1024x768
Capture rate: 512 kbps
Capture FPS: 25
Guest:
Configured memory balloon size: 0 MB
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO command: With machine: drm-erp (#<VagrantPlugins::ProviderVirtualBox::Provider:0x00000100a24c38 @logger=#<Log4r::Logger:0x00000100a24be8 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x000001023be298 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000001023952d0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102395258>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000010238e3b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x000001023be180 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: drm-erp (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x0000010094a9c0 @logger=#<Log4r::Logger:0x00000102081f08 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x00000100a24be8 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x000001023be298 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000001023952d0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102395258>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000010238e3b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x000001023be180 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c", @version="4.3.24", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3:0x00000100a541e0 @logger=#<Log4r::Logger:0x00000100acd4a0 @fullname="vagrant::provider::virtualbox_4_3", @outputters=[], @additive=true, @name="virtualbox_4_3", @path="vagrant::provider", @parent=#<Log4r::Logger:0x000001023be298 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000001023952d0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102395258>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000010238e3b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x000001023be180 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c">>, @cap_logger=#<Log4r::Logger:0x000001021b1d60 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<Log4r::Logger:0x000001023be298 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000001023952d0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102395258>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000010238e3b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x000001023be180 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x000001021b0988>:0x0000010226c2f0>]], @cap_args=[#<Vagrant::Machine: drm-erp (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x000001021b0668 @items={:public_address=>#<Proc:0x000001023b7588@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/docker/plugin.rb:54>, :proxy_machine=>#<Proc:0x000001023b73f8@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/docker/plugin.rb:59>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x000001021b0500 @items={:public_address=>#<Proc:0x000001023be158@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x000001021b02a8 @items={:forwarded_ports=>#<Proc:0x000001023cc988@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x000001023cc898@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0000010089ec60@/opt/vagrant/embedded/gems/gems/vagrant-share-1.1.3/lib/vagrant-share.rb:39>}, @results_cache={}>}>)
INFO interface: info: Bringing machine 'drm-erp' up with 'virtualbox' provider...
Bringing machine 'drm-erp' up with 'virtualbox' provider...
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO batch_action: Enabling parallelization by default.
INFO batch_action: Disabling parallelization because provider doesn't support it: virtualbox
INFO batch_action: Batch action will parallelize: false
INFO batch_action: Starting action: #<Vagrant::Machine:0x00000100b3fcf8> up {:destroy_on_error=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
INFO machine: Calling action: up on provider VirtualBox (05de24c4-8ff9-4426-8efe-b6b69fd57f5c)
DEBUG environment: Attempting to acquire process-lock: machine-action-ce58cf2be16485f31b1c900dd533e2a5
DEBUG environment: Attempting to acquire process-lock: dotlock
INFO environment: Acquired process lock: dotlock
INFO environment: Released process lock: dotlock
INFO environment: Acquired process lock: machine-action-ce58cf2be16485f31b1c900dd533e2a5
INFO host: Autodetecting host type for [#<Vagrant::Environment: /Volumes/StorEDGE/drm-erp>]
DEBUG host: Trying: arch
DEBUG host: Trying: darwin
INFO host: Detected: darwin!
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000102475f60>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x000001021e6fd8>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100b85bb8>
DEBUG trigger: Looking for triggers with:
DEBUG trigger: -- action: up
DEBUG trigger: -- condition: instead_of
DEBUG trigger: -- vm: drm-erp
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000100b14580>
DEBUG trigger: Looking for triggers with:
DEBUG trigger: -- action: up
DEBUG trigger: -- condition: before
DEBUG trigger: -- vm: drm-erp
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000100a96090>
INFO base: VBoxManage path: VBoxManage
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.24r98716
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.24
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
INFO base: VBoxManage path: VBoxManage
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "hostonlyifs"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000100a96040>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x000001021cf9a0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000001021dca60>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000001021dca60>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Warden:0x00000102307688>
INFO warden: Calling IN action: #<Proc:0x000001023acf70@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Proc:0x000001023074a8@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x00000100a95ff0>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000100a95fc8>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000102852610>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000001028588d0>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000001028588d0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Warden:0x000001023f7a70>
INFO warden: Calling IN action: #<Proc:0x0000010232e990@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Proc:0x000001023f7930@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000100a95f50>
INFO base: VBoxManage path: VBoxManage
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.24r98716
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.24
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
INFO base: VBoxManage path: VBoxManage
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "hostonlyifs"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x00000100a95f28>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxCheckOutdated:0x00000100a95f00>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000100a1d528>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x000001009780a0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::IsRunning:0x00000102001a38>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::IsRunning:0x00000102001a38>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Warden:0x00000100a27500>
INFO warden: Calling IN action: #<Proc:0x00000100ab6d90@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000100a27460>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x000001021a06a0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::IsSaved:0x000001021badc0>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::IsSaved:0x000001021badc0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Warden:0x000001022f5d48>
INFO warden: Calling IN action: #<Proc:0x000001023b4ae0@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000001022f5ca8>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000102852e80>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::IsPaused:0x00000102860dc8>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::IsPaused:0x00000102860dc8>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Warden:0x00000100b0feb8>
INFO warden: Calling IN action: #<Proc:0x00000102849f10@/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x00000100b0fdf0>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CleanMachineFolder:0x00000100b0fd50>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "systemproperties"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: API version: 4_3
Minimum guest RAM size: 4 Megabytes
Maximum guest RAM size: 2097152 Megabytes
Minimum video RAM size: 1 Megabytes
Maximum video RAM size: 256 Megabytes
Maximum guest monitor count: 64
Minimum guest CPU count: 1
Maximum guest CPU count: 32
Virtual disk limit (info): 2199022206976 Bytes
Maximum Serial Port count: 2
Maximum Parallel Port count: 2
Maximum Boot Position: 4
Maximum PIIX3 Network Adapter count: 8
Maximum ICH9 Network Adapter count: 36
Maximum PIIX3 IDE Controllers: 1
Maximum ICH9 IDE Controllers: 1
Maximum IDE Port count: 2
Maximum Devices per IDE Port: 2
Maximum PIIX3 SATA Controllers: 1
Maximum ICH9 SATA Controllers: 8
Maximum SATA Port count: 30
Maximum Devices per SATA Port: 1
Maximum PIIX3 SCSI Controllers: 1
Maximum ICH9 SCSI Controllers: 8
Maximum SCSI Port count: 16
Maximum Devices per SCSI Port: 1
Maximum SAS PIIX3 Controllers: 1
Maximum SAS ICH9 Controllers: 8
Maximum SAS Port count: 8
Maximum Devices per SAS Port: 1
Maximum PIIX3 Floppy Controllers:1
Maximum ICH9 Floppy Controllers: 1
Maximum Floppy Port count: 1
Maximum Devices per Floppy Port: 2
Default machine folder: /Volumes/StorEDGE/VMs
Exclusive HW virtualization use: off
Default hard disk format: VDI
VRDE auth library: VBoxAuth
Webservice auth. library: VBoxAuth
Remote desktop ExtPack:
Log history count: 3
Default frontend:
Autostart database path:
Default Guest Additions ISO: /Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::SetName:0x00000100b0fd28>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "vms"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "drm-erp" {05de24c4-8ff9-4426-8efe-b6b69fd57f5c}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO setname: Not setting the name because our name is already set.
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::ClearForwardedPorts:0x00000100a8cf18>
DEBUG virtualbox_4_3: read_forward_ports: uuid=05de24c4-8ff9-4426-8efe-b6b69fd57f5c active_only=false
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_4_3: - [1, "ssh", 2222, 22]
DEBUG virtualbox_4_3: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_4_3: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_4_3: - [1, "tcp8080", 8080, 80]
INFO interface: info: Clearing any previously set forwarded ports...
INFO interface: info: ==> drm-erp: Clearing any previously set forwarded ports...
==> drm-erp: Clearing any previously set forwarded ports...
DEBUG virtualbox_4_3: read_forward_ports: uuid=05de24c4-8ff9-4426-8efe-b6b69fd57f5c active_only=false
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_4_3: - [1, "ssh", 2222, 22]
DEBUG virtualbox_4_3: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_4_3: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_4_3: - [1, "tcp8080", 8080, 80]
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--natpf1", "delete", "ssh", "--natpf1", "delete", "tcp5432", "--natpf1", "delete", "tcp8000", "--natpf1", "delete", "tcp8080"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::Cachier::Action::ConfigureBucketRoot:0x00000100a8cef0>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Provision:0x00000100a0c408>
INFO provision: Checking provisioner sentinel file...
INFO warden: Calling IN action: #<VagrantPlugins::Cachier::Action::InstallBuckets:0x000001020cb220>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::EnvSet:0x00000100897910>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareForwardedPortCollisionParams:0x000001008978e8>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "vms"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "drm-erp" {05de24c4-8ff9-4426-8efe-b6b69fd57f5c}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_4_3: read_forward_ports: uuid=05de24c4-8ff9-4426-8efe-b6b69fd57f5c active_only=false
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x00000100897758>
DEBUG environment: Attempting to acquire process-lock: fpcollision
DEBUG environment: Attempting to acquire process-lock: dotlock
INFO environment: Acquired process lock: dotlock
INFO environment: Released process lock: dotlock
INFO environment: Acquired process lock: fpcollision
INFO handle_port_collisions: Detecting any forwarded port collisions...
DEBUG handle_port_collisions: Extra in use: []
DEBUG handle_port_collisions: Remap: {}
DEBUG handle_port_collisions: Repair: true
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds:0x00000102058838>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "vms"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "drm-erp" {05de24c4-8ff9-4426-8efe-b6b69fd57f5c}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x000001009c6a98>
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: darwin
DEBUG host: Checking in: bsd
DEBUG host: Found cap: nfs_prune in bsd
INFO nfs: NFS pruning. Valid IDs: ["05de24c4-8ff9-4426-8efe-b6b69fd57f5c"]
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: darwin
DEBUG host: Checking in: bsd
DEBUG host: Found cap: nfs_prune in bsd
INFO host: Execute capability: nfs_prune [#<Vagrant::Environment: /Volumes/StorEDGE/drm-erp>, #<Vagrant::UI::Prefixed:0x00000100a9f7a8 @logger=#<Log4r::Logger:0x00000100a9f758 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x000001023be298 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000001023952d0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102395258>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000010238e3b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x000001023be180 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={}, @prefix=:"drm-erp", @ui=#<Vagrant::UI::Colored:0x000001022469d8 @logger=#<Log4r::Logger:0x00000102246988 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x000001023be298 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000001023952d0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102395258>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000010238e3b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x000001023be180 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={:color=>:default}, @lock=#<Mutex:0x00000102294138>>>, ["05de24c4-8ff9-4426-8efe-b6b69fd57f5c"]] (darwin)
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x00000100a45fc8>
INFO synced_folder_cleanup: Invoking synced folder cleanup for: virtualbox
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "sharedfolder", "remove", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--name", "var_erp"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "sharedfolder", "remove", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--name", "tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "sharedfolder", "remove", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--name", "tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x00000100abdd20>
INFO synced_folders: Synced Folder Implementation: virtualbox
INFO synced_folders: - /var/erp: ./erp => /var/erp
INFO synced_folders: - /tmp/vagrant-puppet/manifests-846018e2aa141a5eb79a64b4015fc5f3: /Volumes/StorEDGE/drm-erp/puppet/manifests => /tmp/vagrant-puppet/manifests-846018e2aa141a5eb79a64b4015fc5f3
INFO synced_folders: - /tmp/vagrant-puppet/modules-2a433bda4e0a87bc66f3ecfc0f1351b8: /Volumes/StorEDGE/drm-erp/puppet/modules => /tmp/vagrant-puppet/modules-2a433bda4e0a87bc66f3ecfc0f1351b8
INFO synced_folders: Invoking synced folder prepare for: virtualbox
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "setextradata", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/var_erp", "1"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "sharedfolder", "add", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--name", "var_erp", "--hostpath", "/Volumes/StorEDGE/drm-erp/erp"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "setextradata", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3", "1"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "sharedfolder", "add", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--name", "tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3", "--hostpath", "/Volumes/StorEDGE/drm-erp/puppet/manifests"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "setextradata", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8", "1"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "sharedfolder", "add", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--name", "tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8", "--hostpath", "/Volumes/StorEDGE/drm-erp/puppet/modules"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings:0x00000100b7efc0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::ClearNetworkInterfaces:0x00000102225f80>
INFO interface: info: Clearing any previously set network interfaces...
INFO interface: info: ==> drm-erp: Clearing any previously set network interfaces...
==> drm-erp: Clearing any previously set network interfaces...
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--nic2", "none", "--nic3", "none", "--nic4", "none", "--nic5", "none", "--nic6", "none", "--nic7", "none", "--nic8", "none"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Network:0x00000102225f08>
DEBUG network: Available slots for high-level adapters: #<Set: {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36}>
INFO network: Determining network adapters required for high-level configuration...
INFO network: -- Slot 2: bridged
INFO network: Determining adapters and compiling network configuration...
INFO network: Network slot 1. Type: nat.
DEBUG network: Normalized configuration: {:auto_config=>false, :adapter=>1}
DEBUG network: Adapter configuration: {:adapter=>1, :type=>:nat}
INFO network: Network slot 2. Type: bridged.
DEBUG network: Normalized configuration: {:auto_config=>true, :bridge=>"en0: Wi-Fi (AirPort)", :mac=>nil, :nic_type=>nil, :use_dhcp_assigned_default_route=>false, :protocol=>"tcp", :id=>"655ece8f-fb4d-4188-8218-9f5670bce643", :adapter=>2}
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "bridgedifs"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name: en0: Wi-Fi (AirPort)
GUID: 00306e65-0000-4000-8000-b8e8561fec30
DHCP: Disabled
IPAddress: 192.168.1.13
NetworkMask: 255.255.255.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: b8:e8:56:1f:ec:30
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-en0
Name: en1: Thunderbolt 1
GUID: 00316e65-0000-4000-8000-32001639a000
DHCP: Disabled
IPAddress: 0.0.0.0
NetworkMask: 0.0.0.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 32:00:16:39:a0:00
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-en1
Name: p2p0
GUID: 30703270-0000-4000-8000-0ae8561fec30
DHCP: Disabled
IPAddress: 0.0.0.0
NetworkMask: 0.0.0.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 0a:e8:56:1f:ec:30
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-p2p0
Name: awdl0
GUID: 6c647761-0030-4000-8000-d6d9ff97c876
DHCP: Disabled
IPAddress: 0.0.0.0
NetworkMask: 0.0.0.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: d6:d9:ff:97:c8:76
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-awdl0
Name: bridge0
GUID: 64697262-6567-4030-8000-bae856f1fe00
DHCP: Disabled
IPAddress: 0.0.0.0
NetworkMask: 0.0.0.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: ba:e8:56:f1:fe:00
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-bridge0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG network: Bridge was directly specified in config, searching for: en0: Wi-Fi (AirPort)
DEBUG network: Specific bridge found as configured in the Vagrantfile. Using it.
INFO network: Bridging adapter 2 to en0: Wi-Fi (AirPort)
DEBUG network: Adapter configuration: {:adapter=>2, :type=>:bridged, :bridge=>"en0: Wi-Fi (AirPort)", :mac_address=>nil, :nic_type=>nil}
INFO network: Enabling adapters...
INFO interface: output: Preparing network interfaces based on configuration...
INFO interface: output: ==> drm-erp: Preparing network interfaces based on configuration...
==> drm-erp: Preparing network interfaces based on configuration...
INFO interface: detail: Adapter 1: nat
INFO interface: detail: drm-erp: Adapter 1: nat
drm-erp: Adapter 1: nat
INFO interface: detail: Adapter 2: bridged
INFO interface: detail: drm-erp: Adapter 2: bridged
drm-erp: Adapter 2: bridged
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--nic1", "nat", "--nic2", "bridged", "--bridgeadapter2", "en0: Wi-Fi (AirPort)", "--cableconnected2", "on"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::ForwardPorts:0x000001022a57a8>
INFO interface: output: Forwarding ports...
INFO interface: output: ==> drm-erp: Forwarding ports...
==> drm-erp: Forwarding ports...
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="poweroff"
VMStateChangeTime="2015-03-09T11:58:31.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: detail: 80 => 8080 (adapter 1)
INFO interface: detail: drm-erp: 80 => 8080 (adapter 1)
drm-erp: 80 => 8080 (adapter 1)
INFO interface: detail: 8000 => 8000 (adapter 1)
INFO interface: detail: drm-erp: 8000 => 8000 (adapter 1)
drm-erp: 8000 => 8000 (adapter 1)
INFO interface: detail: 5432 => 5432 (adapter 1)
INFO interface: detail: drm-erp: 5432 => 5432 (adapter 1)
drm-erp: 5432 => 5432 (adapter 1)
INFO interface: detail: 22 => 2222 (adapter 1)
INFO interface: detail: drm-erp: 22 => 2222 (adapter 1)
drm-erp: 22 => 2222 (adapter 1)
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--natpf1", "tcp8080,tcp,,8080,,80", "--natpf1", "tcp8000,tcp,,8000,,8000", "--natpf1", "tcp5432,tcp,,5432,,5432", "--natpf1", "ssh,tcp,127.0.0.1,2222,,22"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SetHostname:0x000001022a5730>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::SaneDefaults:0x000001022a5708>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--rtcuseutc", "on"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO sanedefaults: Automatically figuring out whether to enable/disable NAT DNS proxy...
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--natdnsproxy1", "on"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x00000102346f18>
INFO interface: info: Running 'pre-boot' VM customizations...
INFO interface: info: ==> drm-erp: Running 'pre-boot' VM customizations...
==> drm-erp: Running 'pre-boot' VM customizations...
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--memory", "1024"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--cpus", "2"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--natdnshostresolver1", "on"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Boot:0x00000102346ec8>
INFO interface: info: Booting VM...
INFO interface: info: ==> drm-erp: Booting VM...
==> drm-erp: Booting VM...
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "startvm", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--type", "headless"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Waiting for VM "05de24c4-8ff9-4426-8efe-b6b69fd57f5c" to power on...
VM "05de24c4-8ff9-4426-8efe-b6b69fd57f5c" has been successfully started.
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x00000102346e00>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::WaitForCommunicator:0x00000102346db0>
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
INFO interface: output: Waiting for machine to boot. This may take a few minutes...
DEBUG subprocess: Selecting on IO
INFO interface: output: ==> drm-erp: Waiting for machine to boot. This may take a few minutes...
==> drm-erp: Waiting for machine to boot. This may take a few minutes...
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="running"
VMStateChangeTime="2015-03-09T11:58:58.035000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
SessionType="headless"
VideoMode="640,480,32"@0,0
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Ubuntu_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="running"
VMStateChangeTime="2015-03-09T11:58:58.035000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
SessionType="headless"
VideoMode="640,480,32"@0,0
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Ubuntu_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_4_3: Searching for SSH port: 22
DEBUG virtualbox_4_3: read_forward_ports: uuid=05de24c4-8ff9-4426-8efe-b6b69fd57f5c active_only=false
INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "05de24c4-8ff9-4426-8efe-b6b69fd57f5c", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="drm-erp"
groups="/"
ostype="Ubuntu (64 bit)"
UUID="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
CfgFile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.vbox"
SnapFldr="/Volumes/StorEDGE/VMs/drm-erp/Snapshots"
LogFldr="/Volumes/StorEDGE/VMs/drm-erp/Logs"
hardwareuuid="05de24c4-8ff9-4426-8efe-b6b69fd57f5c"
memory=1024
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="off"
longmode="on"
synthcpu="off"
bootmenu="messageandmenu"
boot1="disk"
boot2="none"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
VMState="running"
VMStateChangeTime="2015-03-09T11:58:58.035000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="SATAController"
storagecontrollertype0="IntelAhci"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="30"
storagecontrollerportcount0="1"
storagecontrollerbootable0="on"
"SATAController-0-0"="/Volumes/StorEDGE/VMs/drm-erp/box-disk1.vmdk"
"SATAController-ImageUUID-0-0"="24da370e-3f77-476e-a8f5-b3552bec305f"
natnet1="nat"
macaddress1="080027E422A5"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp5432,tcp,,5432,,5432"
Forwarding(2)="tcp8000,tcp,,8000,,8000"
Forwarding(3)="tcp8080,tcp,,8080,,80"
bridgeadapter2="en0: Wi-Fi (AirPort)"
macaddress2="080027278746"
cableconnected2="on"
nic2="bridged"
nictype2="82540EM"
nicspeed2="0"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
SessionType="headless"
VideoMode="640,480,32"@0,0
vrde="off"
usb="off"
ehci="off"
SharedFolderNameMachineMapping1="var_erp"
SharedFolderPathMachineMapping1="/Volumes/StorEDGE/drm-erp/erp"
SharedFolderNameMachineMapping2="tmp_vagrant-puppet_manifests-846018e2aa141a5eb79a64b4015fc5f3"
SharedFolderPathMachineMapping2="/Volumes/StorEDGE/drm-erp/puppet/manifests"
SharedFolderNameMachineMapping3="tmp_vagrant-puppet_modules-2a433bda4e0a87bc66f3ecfc0f1351b8"
SharedFolderPathMachineMapping3="/Volumes/StorEDGE/drm-erp/puppet/modules"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/Volumes/StorEDGE/VMs/drm-erp/drm-erp.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Ubuntu_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_4_3: - [1, "ssh", 2222, 22]
DEBUG virtualbox_4_3: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_4_3: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_4_3: - [1, "tcp8080", 8080, 80]
DEBUG ssh: Checking key permissions: /Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO ssh: Attempting to correct key permissions to 0600
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x00000100897758>
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO environment: Released process lock: fpcollision
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x000001022f5ca8>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000100a27460>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000100a1d528>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000100a95fc8>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000100a96040>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO environment: Released process lock: machine-action-ce58cf2be16485f31b1c900dd533e2a5
INFO environment: Running hook: environment_unload
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 5 hooks defined.
INFO runner: Running action: #<Vagrant::Action::Builder:0x00000102325868>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x0000010234fd70>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000102435d48>
INFO warden: Calling IN action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000102862808>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000102862808>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x00000102435d48>
INFO warden: Calling OUT action: #<VagrantPlugins::Triggers::Action::Trigger:0x0000010234fd70>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<Vagrant::Errors::SSHKeyBadPermissions: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key>
ERROR vagrant: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
ERROR vagrant: /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/util/ssh.rb:48:in `check_key_permissions'
/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:467:in `block in ssh_info'
/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:464:in `each'
/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:464:in `ssh_info'
/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/communicators/ssh/communicator.rb:46:in `block in wait_for_ready'
/opt/vagrant/embedded/lib/ruby/2.0.0/timeout.rb:66:in `timeout'
/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/communicators/ssh/communicator.rb:42:in `wait_for_ready'
/opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/wait_for_communicator.rb:16:in `block in call'
INFO interface: error: The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
The private key to connect to this box via SSH has invalid permissions
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
permissions on the following file to 0600 and then try running this command again:
/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key
INFO interface: Machine: error-exit ["Vagrant::Errors::SSHKeyBadPermissions", "The private key to connect to this box via SSH has invalid permissions\nset on it. The permissions of the private key should be set to 0600, otherwise SSH will\nignore the key. Vagrant tried to do this automatically for you but failed. Please set the\npermissions on the following file to 0600 and then try running this command again:\n\n/Volumes/StorEDGE/drm-erp/.vagrant/machines/drm-erp/virtualbox/private_key"]
Previously using Vagrant 1.6.5 on Mac OS Yosemite was working fine.
I'm having the same issue on OS X 10.9.5 Vagrant: 1.7.2 VirtualBox: 4.3.26 I'm having it on a machine I copied from work.
is this solved? i am getting similar issue when i upgraded working machine (vagrant 1.7.2 / vbox 4.3) to vagrant to 1.7.4 and virtualbox 5
When I do a
I get the following result:
I`m using the following versions: