Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NFS allow_ip invalid #7607

Closed
meteorlad opened this issue Jul 19, 2016 · 0 comments
Closed

NFS allow_ip invalid #7607

meteorlad opened this issue Jul 19, 2016 · 0 comments

Comments

@meteorlad
Copy link

I would like to change the IP to allow the NFS, but does not take effect.
I set the 192.168.10.0/24, why not take effect?

My configure is follows:

cat /etc/exports

# /etc/exports: the access control list for filesystems which may be exported
#       to NFS clients.  See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check)
#
# VAGRANT-BEGIN: 1000 bbee608d-90af-47ac-8553-42e641905074
"/data/my_vagrant/vagrant-dev-php55/workspace" 192.168.10.10(rw,no_subtree_check,all_squash,async,insecure,anonuid=1000,anongid=1000,fsid=2040498797)
# VAGRANT-END: 1000 bbee608d-90af-47ac-8553-42e641905074

Vagrantfile with nfs folder:

config.vm.synced_folder "./workspace/", "/vagrant", allow_ip: "192.168.10.0/24",
      :nfs => true,
      :linux__nfs_options => ['rw', 'no_subtree_check', 'all_squash', 'async', 'insecure']

### Vagrant version
vagrant: 1.8.4

### Host operating system
Ubuntu 14.04.4 LTS

### Guest operating system
virtualbox: 5.0.24
os: CentOS 7.2 Minimal

### Vagrantfile
```ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
  # The most common configuration options are documented and commented below.
  # For a complete reference, please see the online documentation at
  # https://docs.vagrantup.com.

  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://atlas.hashicorp.com/search.
  config.vm.box = "CentOS72 x86_64 minimal"

  # Disable automatic box update checking. If you disable this, then
  # boxes will only be checked for updates when the user runs
  # `vagrant box outdated`. This is not recommended.
  # config.vm.box_check_update = false

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  # config.vm.network "forwarded_port", guest: 80, host: 8080

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  config.vm.network "private_network", ip: "192.168.10.10"

  # Create a public network, which generally matched to bridged network.
  # Bridged networks make the machine appear as another physical device on
  # your network.
  config.vm.network "public_network", bridge: "eth0"

  # Share an additional folder to the guest VM. The first argument is
  # the path on the host to the actual folder. The second argument is
  # the path on the guest to mount the folder. And the optional third
  # argument is a set of non-required options.
  # config.vm.synced_folder "../data", "/vagrant_data"
  config.vm.synced_folder "./workspace/", "/vagrant", allow_ip: "192.168.10.0/24",
      :nfs => true,
      :linux__nfs_options => ['rw', 'no_subtree_check', 'all_squash', 'async', 'insecure']
  # Provider-specific configuration so you can fine-tune various
  # backing providers for Vagrant. These expose provider-specific options.
  # Example for VirtualBox:
  #
  # config.vm.provider "virtualbox" do |vb|
  #   # Display the VirtualBox GUI when booting the machine
  #   vb.gui = true
  #
  #   # Customize the amount of memory on the VM:
  #   vb.memory = "1024"
  # end
  #
  # View the documentation for the provider you are using for more
  # information on available options.

  # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
  # such as FTP and Heroku are also available. See the documentation at
  # https://docs.vagrantup.com/v2/push/atlas.html for more information.
  # config.push.define "atlas" do |push|
  #   push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
  # end

  # Enable provisioning with a shell script. Additional provisioners such as
  # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
  # documentation for more information about their specific syntax and use.
  # config.vm.provision "shell", inline: <<-SHELL
  #   apt-get update
  #   apt-get install -y apache2
  # SHELL
  config.vm.provision "ansible" do |ansible|
    ansible.inventory_path = "provisioning/inventory.ini"
    ansible.playbook = "provisioning/playbook.yml"
    ansible.limit = "all"
    # ansible.raw_arguments = [
    #   "--connection=paramiko",
    #   "--private-key=/data/my_vagrant/vagrant-dev-php55/.vagrant/machines/default/virtualbox/private_key"
    # ]
  end
  config.vm.provision "shell", inline: <<-SHELL
    systemctl disable firewalld
    systemctl stop firewalld
  SHELL
end

Debug output

DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "hostonlyifs"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:            vboxnet0
GUID:            786f6276-656e-4074-8000-0a0027000000
DHCP:            Disabled
IPAddress:       192.168.57.1
NetworkMask:     255.255.255.0
IPV6Address:     
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 0a:00:27:00:00:00
MediumType:      Ethernet
Status:          Down
VBoxNetworkName: HostInterfaceNetworking-vboxnet0

Name:            vboxnet1
GUID:            786f6276-656e-4174-8000-0a0027000001
DHCP:            Disabled
IPAddress:       192.168.33.254
NetworkMask:     255.255.255.0
IPV6Address:     
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 0a:00:27:00:00:01
MediumType:      Ethernet
Status:          Down
VBoxNetworkName: HostInterfaceNetworking-vboxnet1

Name:            vboxnet2
GUID:            786f6276-656e-4274-8000-0a0027000002
DHCP:            Disabled
IPAddress:       192.168.10.254
NetworkMask:     255.255.255.0
IPV6Address:     fe80:0000:0000:0000:0800:27ff:fe00:0002
IPV6NetworkMaskPrefixLength: 64
HardwareAddress: 0a:00:27:00:00:02
MediumType:      Ethernet
Status:          Up
VBoxNetworkName: HostInterfaceNetworking-vboxnet2

DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "guestproperty", "get", "bbee608d-90af-47ac-8553-42e641905074", "/VirtualBox/GuestInfo/Net/1/V4/IP"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Value: 192.168.10.10
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings:0x0000000301c400>
 INFO synced_folders: Invoking synced folder enable: nfs
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: nfs_client_installed
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: nfs_client_installed in linux
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: nfs_client_installed
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: nfs_client_installed in linux
 INFO guest: Execute capability: nfs_client_installed [#<Vagrant::Machine: default (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: test -x /sbin/mount.nfs (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG environment: Attempting to acquire process-lock: nfs-export
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: nfs-export
 INFO interface: info: Exporting NFS shared folders...
 INFO interface: info: ==> default: Exporting NFS shared folders...
==> default: Exporting NFS shared folders...
DEBUG host: Searching for cap: nfs_export
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_export in linux
 INFO host: Execute capability: nfs_export [#<Vagrant::Environment: /data/my_vagrant/vagrant-dev-php55>, #<Vagrant::UI::Prefixed:0x00000001350b78 @logger=#<Log4r::Logger:0x00000001350b28 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0000000205a580 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000002087e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000002087da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000020850f0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000000205a468 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @prefix=:default, @ui=#<Vagrant::UI::Colored:0x0000000212b8d8 @logger=#<Log4r::Logger:0x0000000212b888 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0000000205a580 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000002087e18 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000002087da0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000020850f0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000000205a468 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={:color=>:default}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @lock=#<Mutex:0x0000000216a560>>>, "bbee608d-90af-47ac-8553-42e641905074", ["192.168.10.10"], {"/vagrant"=>{:allow_ip=>"192.168.10.0/24", :nfs=>true, :linux__nfs_options=>["rw", "no_subtree_check", "all_squash", "async", "insecure"], :guestpath=>"/vagrant", :hostpath=>"/data/my_vagrant/vagrant-dev-php55/workspace", :disabled=>false, :type=>:nfs, :__vagrantfile=>true, :map_uid=>1000, :map_gid=>1000, :nfs_udp=>true, :nfs_version=>3, :uuid=>"2040498797"}}] (linux)
DEBUG host: Searching for cap: nfs_apply_command
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_apply_command in linux
 INFO host: Execute capability: nfs_apply_command [#<Vagrant::Environment: /data/my_vagrant/vagrant-dev-php55>] (linux)
DEBUG host: Searching for cap: nfs_check_command
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_check_command in linux
 INFO host: Execute capability: nfs_check_command [#<Vagrant::Environment: /data/my_vagrant/vagrant-dev-php55>] (linux)
DEBUG host: Searching for cap: nfs_start_command
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_start_command in linux
 INFO host: Execute capability: nfs_start_command [#<Vagrant::Environment: /data/my_vagrant/vagrant-dev-php55>] (linux)
 INFO interface: info: Preparing to edit /etc/exports. Administrator privileges will be required...
 INFO interface: info: ==> default: Preparing to edit /etc/exports. Administrator privileges will be required...
==> default: Preparing to edit /etc/exports. Administrator privileges will be required...
nfsd running
 INFO environment: Released process lock: nfs-export
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO interface: info: Mounting NFS shared folders...
 INFO interface: info: ==> default: Mounting NFS shared folders...
==> default: Mounting NFS shared folders...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: mount_nfs_folder
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: mount_nfs_folder in linux
 INFO guest: Execute capability: mount_nfs_folder [#<Vagrant::Machine: default (VagrantPlugins::ProviderVirtualBox::Provider)>, "192.168.10.254", {"/vagrant"=>{:allow_ip=>"192.168.10.0/24", :nfs=>true, :linux__nfs_options=>["rw", "no_subtree_check", "all_squash", "async", "insecure", "anonuid=1000", "anongid=1000", "fsid=2040498797"], :guestpath=>"/vagrant", :hostpath=>"/data/my_vagrant/vagrant-dev-php55/workspace", :disabled=>false, :type=>:nfs, :__vagrantfile=>true, :map_uid=>1000, :map_gid=>1000, :nfs_udp=>true, :nfs_version=>3, :uuid=>"2040498797"}}] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: shell_expand_guest_path
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: shell_expand_guest_path in linux
 INFO guest: Execute capability: shell_expand_guest_path [#<Vagrant::Machine: default (VagrantPlugins::ProviderVirtualBox::Provider)>, "/vagrant"] (redhat)
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: echo; printf /vagrant (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: stdout: 
/vagrant
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute: mkdir -p '/vagrant'
mount -o vers=3,udp '192.168.10.254:/data/my_vagrant/vagrant-dev-php55/workspace' '/vagrant'
if command -v /sbin/init && /sbin/init --version | grep upstart; then
  /sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT='/vagrant'
fi
 (sudo=true)
DEBUG ssh: stdout: /sbin/init

DEBUG ssh: stderr: /sbin/init: unrecognized option '--version'

DEBUG ssh: Exit status: 0
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SyncedFolders:0x0000000307c918>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x000000030f4788>
 INFO warden: Calling OUT action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x0000000313f120>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds:0x0000000319fef8>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x0000000320fb90>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareForwardedPortCollisionParams:0x0000000320fbb8>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::EnvSet:0x0000000320fbe0>
 INFO interface: info: Machine already provisioned. Run `vagrant provision` or use the `--provision`
flag to force provisioning. Provisioners marked to run always will still run.
 INFO interface: info: ==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.
==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Provision:0x000000032c26f0>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::ClearForwardedPorts:0x000000032c2718>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::SetName:0x000000031ec2a8>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CleanMachineFolder:0x000000031ec2d0>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x000000031ec2f8>
 INFO warden: Calling OUT action: #<Proc:0x000000032dfef8@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x00000002c5cf90>
 INFO warden: Calling OUT action: #<Proc:0x00000002cc4c30@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x00000001eb3f60>
 INFO warden: Calling OUT action: #<Proc:0x00000001e71700@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x0000000180b190>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::BoxCheckOutdated:0x00000001e834a0>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x00000001e83568>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000001e835e0>
 INFO warden: Calling OUT action: #<Proc:0x00000001ed8bd0@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x00000002bd2b88@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x00000002b8ba58@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x00000001ed8c70>
 INFO warden: Calling OUT action: #<Proc:0x00000002018f68@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x00000001fb67c8@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x00000001ed8cc0>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::DiscardState:0x00000001ed8ce8>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x00000001ed8d10>
 INFO warden: Calling OUT action: #<Proc:0x00000001e83298@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x00000001e83630>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000001e83658>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x00000001e836a8>
 INFO warden: Calling OUT action: #<Proc:0x000000016e4cf8@/opt/vagrant/embedded/gems/gems/vagrant-1.8.4/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x000000016906d0>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x000000016906f8>
 INFO interface: Machine: action ["reload", "end", {:target=>:default}]
 INFO environment: Released process lock: machine-action-4d5207f3af9271bf6bfc7c8904e57da2
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", "bbee608d-90af-47ac-8553-42e641905074", "--machinereadable"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="vagrant-dev-php55_default_1468820484804_71772"
groups="/"
ostype="Red Hat (64-bit)"
UUID="bbee608d-90af-47ac-8553-42e641905074"
CfgFile="/virt/vbox/vagrant-dev-php55_default_1468820484804_71772/vagrant-dev-php55_default_1468820484804_71772.vbox"
SnapFldr="/virt/vbox/vagrant-dev-php55_default_1468820484804_71772/Snapshots"
LogFldr="/virt/vbox/vagrant-dev-php55_default_1468820484804_71772/Logs"
hardwareuuid="bbee608d-90af-47ac-8553-42e641905074"
memory=1024
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-07-19T05:39:50.858000000"
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="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="/virt/vbox/vagrant-dev-php55_default_1468820484804_71772/packer-packer-centos-72-1468769282-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="65f21ed6-d968-4a60-b568-9cfc93980983"
natnet1="nat"
macaddress1="080027092540"
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"
hostonlyadapter2="vboxnet2"
macaddress2="080027C95C76"
cableconnected2="on"
nic2="hostonly"
nictype2="82540EM"
nicspeed2="0"
bridgeadapter3="eth0"
macaddress3="080027BC3E08"
cableconnected3="on"
nic3="bridged"
nictype3="82540EM"
nicspeed3="0"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5968
vrdeports="5968"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5968"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="/virt/vbox/vagrant-dev-php55_default_1468820484804_71772/vagrant-dev-php55_default_1468820484804_71772.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.24 r108355"
GuestAdditionsFacility_VirtualBox Base Driver=50,1468906805839
GuestAdd
DEBUG subprocess: stdout: itionsFacility_VirtualBox System Service=50,1468906810487
GuestAdditionsFacility_Seamless Mode=0,1468906805839
GuestAdditionsFacility_Graphics Mode=0,1468906805839
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x00000002ddb2e0>

Expected behavior

What should have happened?

Actual behavior

What actually happened?

Steps to reproduce

References

Are there any other GitHub issues (open or closed) that should be linked here?
For example:

@ghost ghost locked and limited conversation to collaborators Apr 4, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant