hashicorp / vagrant

Vagrant is a tool for building and distributing development environments.
https://www.vagrantup.com
Other
26.27k stars 4.43k forks source link

Vagrant/Restic big big problem #11698

Closed Vartkat closed 4 years ago

Vartkat commented 4 years ago

Vagrant version

Vagrant 2.2.9

Host operating system

OS X Mojave

Guest operating system

Ubuntu 18.04

Vagrantfile

# -*- 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://vagrantcloud.com/search.
  config.vm.box = "ubuntu/bionic64"
  config.disksize.size = '35GB'

  # 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.
  # NOTE: This will enable public access to the opened port
  # config.vm.network "forwarded_port", guest: 80, host: 8080

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine and only allow access
  # via 127.0.0.1 to disable public access
  # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
  config.vm.network "public_network", ip: "192.168.3.15", bridge: "en0: Ethernet", auto_correct: true

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  # config.vm.network "private_network", ip: "192.168.33.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"

  # 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"

  # 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.

  # 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
end

Debug output

Provide a link to a GitHub Gist containing the complete debug output: https://www.vagrantup.com/docs/other/debugging.html. The debug output should be very long. Do NOT paste the debug output in the issue, just paste the link to the Gist.

Expected behavior

Vagrant shouldn't delete files

Actual behavior

Vagrant is deleting files

Steps to reproduce

On OS X Mac Mojave. I've made a bash script to backup a Virtualbox vm (vdi file). The vm has been built using Vagrant. The script shuts down the vm using the "vagrant halt" command before backup. It runs restic which goes without problem. The moment it tries to reboot the vm using the "vagrant up" command, vagrant deletes a bunch of file in the .vagrant/machines/default/virtualbox/ directory a directory where are stored an "id" file (this file tells which vm has to be addressed) and some ssh key files.

Why do I say vagrant is the culprit is because I ran an fs_enventer to see who was deleting the files and the answer is a ruby process. As far as I know restic is not written in ruby but vagrant is.

Result of the files deleting is that vagrant is rebuilding a brand new vm when "vagrant up" is invoqued.

Vagrant seems to be acting as a watchdog for these files and even if I make a backup of the files in some tmp dir, check if the files are deleted and copy them back, Vagrant is still deleting the copies as soon as vagrant up is invoqued.

Are there any other GitHub issues (open or closed) that should be linked here? I don't know

jbonhag commented 4 years ago

Hi there,

Thanks for opening an issue with Vagrant! Sorry that you're experiencing this behavior. I took a look but unfortunately wasn't able to reproduce the issue. Would you mind creating a Gist with the output of vagrant up --debug command after running the backup script?

Vartkat commented 4 years ago

Thanks you very much for looking into this.

Actually I don't even have to ask for vagrant up...

Here is what I'm doing in a Terminal session : $cp -afR /tmp/restictemp/.vagrant /Users/myUserName/Documents/OdooV12/ just copying my backup files.

files vanishing

Looking in the finder I just have to wait a few seconds to see the files in /Users/myUserName/Documents/OdooV12/.vagrant disappear.

Output of fs_usage is

Here is the output of fs_usage :

$ sudo fs_usage |grep '/Users/myUserName/Documents/OdooV12/.vagrant' Password: 13:20:38 stat64 /Users/myUserName/Documents/OdooV12/.vagrantplugins 0.000003 ruby 13:20:38 stat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 ruby 13:20:38 mkdir /Users/myUserName/Documents/OdooV12/.vagrant 0.000002 ruby 13:20:38 stat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 ruby 13:20:38 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader/loader.rb 0.000006 ruby 13:20:38 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/plugins.json 0.000003 ruby 13:20:38 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/plugins.json 0.000005 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/plugins.json 0.000005 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000004 ruby 13:20:39 open /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000015 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 ruby 13:20:39 open /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000015 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000006 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 ruby 13:20:39 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000012 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000003 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000007 ruby 13:20:39 open /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000017 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000005 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 ruby 13:20:39 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000011 ruby 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000003 ruby 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000044 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000017 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000009 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000039 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000011 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000010 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000017 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000028 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000002 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000013 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000027 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:39 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:39 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:20:39 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000011 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000005 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000028 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000007 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000014 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000036 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000010 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:20:40 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000002 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000010 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000026 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:40 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000013 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000005 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000029 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000010 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000036 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:40 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000002 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000018 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000025 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000013 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:40 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000013 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000027 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000010 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000027 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000010 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000009 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000012 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000043 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 Finder 13:20:40 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000015 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000018 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000049 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000015 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000033 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000010 Finder 13:20:40 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000010 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000009 Finder 13:20:40 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000009 Finder 13:20:40 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000006 Finder 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000035 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.DS_Store 0.000004 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/.DS_Store 0.000097 cp 13:20:43 WrData[A] /Users/myUserName/Documents/OdooV12/.vagrant/.DS_Store 0.007931 W cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000009 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000004 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000038 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000008 cp 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000006 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 fseventsd 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader/loader.rb 0.000020 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/rgloader/loader.rb 0.000094 cp 13:20:43 utimes /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000029 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000003 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000004 cp 13:20:43 WrData[A] /Users/myUserName/Documents/OdooV12/.vagrant/rgloader/loader.rb 0.000058 W cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000026 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000008 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000002 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000018 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000012 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000080 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000013 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 cp 13:20:43 WrData[A] /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000057 W cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000026 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 cp 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000016 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000006 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000014 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000094 cp 13:20:43 WrData[A] /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000061 W cp 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000021 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000017 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000050 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000015 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000019 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000018 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000033 Finder 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant 0.000009 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/.DS_Store 0.000016 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000007 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000008 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000018 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000013 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000013 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000064 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000028 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000018 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000061 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000014 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000036 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000011 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000016 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000006 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000057 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000011 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000020 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000048 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000020 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000015 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000020 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000015 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000055 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000027 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000017 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000063 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000011 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000010 mds 13:20:43 utimes /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000012 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000002 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000018 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000007 cp 13:20:43 utimes /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000041 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000020 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000007 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000003 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000002 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000019 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000007 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000005 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000053 cp 13:20:43 WrData[A] /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000069 W cp 13:20:43 utimes /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000037 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000010 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000006 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000047 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000003 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000008 cp 13:20:43 utimes /Users/myUserName/Documents/OdooV12/.vagrant 0.000014 cp 13:20:43 stat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 cp 13:20:43 stat_extended64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 cp 13:20:43 chmod_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000018 cp 13:20:43 mkdir /Users/myUserName/Documents/OdooV12/.vagrant 0.000002 cp 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant 0.000007 cp 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/.DS_Store 0.000054 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader/loader.rb 0.000005 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000003 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000005 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000004 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000002 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000002 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000005 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000002 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000002 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000018 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000019 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000002 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000002 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000003 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000003 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 fseventsd 13:20:43 lstat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 fseventsd 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000033 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000023 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000006 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000040 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000008 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000015 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000008 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000004 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000016 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000044 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000016 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000005 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000042 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000006 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000010 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000005 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000005 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000010 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000006 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000005 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000029 Finder 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000010 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000007 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000009 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000018 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000030 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000006 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000020 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000010 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000070 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000006 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000051 Finder 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000010 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000006 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000021 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000009 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000009 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000007 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000025 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000006 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000031 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000008 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000040 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000007 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000004 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000013 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000054 mds 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000018 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000030 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000011 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000029 Finder 13:20:43 open /Users/myUserName/Documents/OdooV12/.vagrant 0.000009 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000007 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000004 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000012 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000038 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000008 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000012 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/rgloader 0.000036 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000006 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000061 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000007 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000005 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000040 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000017 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000004 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000022 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000040 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000007 Finder 13:20:43 getxattr /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000011 Finder 13:20:43 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000040 mds 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000007 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000006 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:43 access_extended /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:43 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000023 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/bundler 0.000014 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000014 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000013 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 mds 13:20:44 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 mds 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrantplugins 0.000003 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000005 ruby 13:21:11 mkdir /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/rgloader/loader.rb 0.000008 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/plugins.json 0.000003 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/plugins.json 0.000005 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/plugins.json 0.000005 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000007 ruby 13:21:11 open /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol 0.000015 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000011 ruby 13:21:11 open /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000014 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000005 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 ruby 13:21:11 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000012 ruby 13:21:11 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000003 ruby 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 ruby 13:21:12 open /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000018 ruby 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.DS_Store 0.000005 ruby 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 ruby 13:21:12 open /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000012 ruby 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/.DS_Store 0.000003 ruby 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000030 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000010 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000005 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000026 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000007 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000015 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000036 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000012 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000025 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000009 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000027 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000010 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000027 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000008 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000010 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000026 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000008 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000024 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000007 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000024 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000007 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000009 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000024 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000007 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000008 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000024 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000007 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines/default 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000009 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000004 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000024 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000007 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/machines/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant/machines 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000009 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000024 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 getattrlist /Users/myUserName/Documents/OdooV12/.vagrant 0.000007 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder 13:21:12 stat64 /Users/myUserName/Documents/OdooV12/.vagrant/.localized 0.000002 Finder 13:21:12 fsgetpath /Users/myUserName/Documents/OdooV12/.vagrant 0.000003 Finder

As you can read... At line 120 my cp is copying the files. Then Finder and mds (spotlight indexing) are running. At line 398 ruby is coming and deleting the files.

Output of

$sudo ps -axw |grep ruby
61956 ??         0:00.71 ruby /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/bin/vagrant status
61949 ttys003    0:00.00 grep ruby

So, as the only ruby process comes from vagrant I suppose vagrant is the culprit, but Vagrant can't do that without reason, that's why I asked at Restic if ever a meta data was changed during backup. I suspect that could be what vagrant doesn't like about these files even if I don't see any reason for vagrant to delete files unless, perhaps, when a vagrant destray is asked, which is not the case here. Actually, something is acting as a watchdog for these files and delete them. As you can imagine, backing up my vm and ending with a destroyed vm is not what I expect.

Vartkat commented 4 years ago

As it seems vagrant status is involved I ran :

$ vagrant status --debug
 INFO global: Vagrant version: 2.2.9
 INFO global: Ruby version: 2.6.6
 INFO global: RubyGems version: 3.0.3
 INFO global: VAGRANT_INSTALLER_ENV="1"
 INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/bin/vagrant"
 INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded"
 INFO global: VAGRANT_INSTALLER_VERSION="2"
 INFO global: VAGRANT_LOG="debug"
 WARN global: resolv replacement has not been enabled!
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/pushes/ftp/plugin.rb
 INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/pushes/noop/plugin.rb
 INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/pushes/heroku/plugin.rb
 INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/pushes/local-exec/plugin.rb
 INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/pushes/atlas/plugin.rb
 INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/podman/plugin.rb
 INFO manager: Registered plugin: podman
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/container/plugin.rb
 INFO manager: Registered plugin: container
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/snapshot/plugin.rb
 INFO manager: Registered plugin: snapshot command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/validate/plugin.rb
 INFO manager: Registered plugin: validate command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/winrm/plugin.rb
 INFO manager: Registered plugin: winrm command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/provider/plugin.rb
 INFO manager: Registered plugin: provider command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/winrm_config/plugin.rb
 INFO manager: Registered plugin: winrm-config command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/powershell/plugin.rb
 INFO manager: Registered plugin: powershell command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/cap/plugin.rb
 INFO manager: Registered plugin: cap command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/push/plugin.rb
 INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/cloud/plugin.rb
 INFO manager: Registered plugin: vagrant-cloud
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/port/plugin.rb
 INFO manager: Registered plugin: port command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/login/plugin.rb
 INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/commands/upload/plugin.rb
 INFO manager: Registered plugin: upload command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/void/plugin.rb
 INFO manager: Registered plugin: Void host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/suse/plugin.rb
 INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/hosts/alt/plugin.rb
 INFO manager: Registered plugin: ALT Platform host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/communicators/winssh/plugin.rb
 INFO manager: Registered plugin: windows ssh communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/alpine/plugin.rb
 INFO manager: Registered plugin: Alpine guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/dragonflybsd/plugin.rb
 INFO manager: Registered plugin: DragonFly BSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/amazon/plugin.rb
 INFO manager: Registered plugin: Amazon Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/centos/plugin.rb
 INFO manager: Registered plugin: CentOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/bsd/plugin.rb
 INFO manager: Registered plugin: BSD-based guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/haiku/plugin.rb
 INFO manager: Registered plugin: Haiku guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/atomic/plugin.rb
 INFO manager: Registered plugin: Atomic Host guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/trisquel/plugin.rb
 INFO manager: Registered plugin: Trisquel guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/kali/plugin.rb
 INFO manager: Registered plugin: Kali guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/photon/plugin.rb
 INFO manager: Registered plugin: VMware Photon guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/elementary/plugin.rb
 INFO manager: Registered plugin: Elementary guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/guests/alt/plugin.rb
 INFO manager: Registered plugin: ALT Platform guest
 INFO vagrant: `vagrant` invoked: ["status", "--debug"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x00007fde70a40708>)
 INFO environment:   - cwd: /Users/myUserName/Documents/OdooV12
 INFO environment: Home path: /Users/myUserName/.vagrant.d
DEBUG environment: Effective local data path: /Users/myUserName/Documents/OdooV12/.vagrant
 INFO environment: Local data path: /Users/myUserName/Documents/OdooV12/.vagrant
DEBUG environment: Creating: /Users/myUserName/Documents/OdooV12/.vagrant
DEBUG manager: Enabling localized plugins
 INFO manager: Plugins:
DEBUG signature_file: new solution file instance plugin_file=/Users/myUserName/Documents/OdooV12/.vagrant/plugins.json solution_file=/Users/myUserName/Documents/OdooV12/.vagrant/bundler/local.sol
DEBUG signature_file: missing file so skipping loading
DEBUG bundler: solution file in use for init: <Vagrant::Bundler::SolutionFile:/Users/myUserName/Documents/OdooV12/.vagrant/plugins.json:/Users/myUserName/Documents/OdooV12/.vagrant/bundler/local.sol:invalid>
DEBUG bundler: Generating new builtin set instance.
DEBUG bundler: Generating new plugin set instance. Skip gems - []
DEBUG bundler: generating solution set for configured plugins
DEBUG bundler: Current generated plugin dependency list: []
DEBUG bundler: resolving solution from available specification set
DEBUG bundler: solution set for configured plugins has been resolved
DEBUG bundler: activating solution set
DEBUG bundler: Activating solution set: []
DEBUG signature_file: plugin file does not exist, not storing solution
DEBUG bundler: solution set stored to - <Vagrant::Bundler::SolutionFile:/Users/myUserName/Documents/OdooV12/.vagrant/plugins.json:/Users/myUserName/Documents/OdooV12/.vagrant/bundler/local.sol:invalid>
 INFO manager: Loading plugins...
DEBUG manager: Enabling globalized plugins
 INFO manager: Plugins:
 INFO manager:   - vagrant-disksize = [installed: 0.1.3 constraint: > 0]
 INFO manager:   - vagrant-remove-old-box-versions = [installed: 1.2.0 constraint: > 0]
DEBUG signature_file: new solution file instance plugin_file=/Users/myUserName/.vagrant.d/plugins.json solution_file=/Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol
DEBUG signature_file: reading solution file - /Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol
DEBUG signature_file: solution validation check CHECKSUM 80fe1d9223a7abf254af38f80fd0935ef4e7be57d4dfa630bf4db6623baa509d <-> 80fe1d9223a7abf254af38f80fd0935ef4e7be57d4dfa630bf4db6623baa509d VERSION 2.2.9 <-> 2.2.9
DEBUG signature_file: loading solution dependency list
DEBUG signature_file: solution dependency list: [<Gem::Dependency type=:runtime name="vagrant-disksize" requirements="= 0.1.3">, <Gem::Dependency type=:runtime name="vagrant-remove-old-box-versions" requirements="= 1.2.0">]
DEBUG bundler: solution file in use for init: <Vagrant::Bundler::SolutionFile:/Users/myUserName/.vagrant.d/plugins.json:/Users/myUserName/Documents/OdooV12/.vagrant/bundler/global.sol:valid>
DEBUG bundler: Generating new builtin set instance.
DEBUG bundler: Generating new plugin set instance. Skip gems - []
DEBUG bundler: loading cached solution set
DEBUG bundler: activating solution set
DEBUG bundler: Activating solution set: ["vagrant-disksize-0.1.3", "vagrant-remove-old-box-versions-1.2.0"]
DEBUG bundler: Activating gem vagrant-disksize-0.1.3
DEBUG bundler: Activating gem vagrant-remove-old-box-versions-1.2.0
 INFO manager: Loading plugins...
 INFO manager: Loading plugin `vagrant-disksize` with default require: `vagrant-disksize`
ERROR manager: Failed to load plugin `vagrant-disksize` with default require. - LoadError: cannot load such file -- vagrant-disksize
 INFO manager: Loading plugin `vagrant-disksize` with slash require: `vagrant/disksize`
 INFO manager: Registered plugin: vagrant-disksize
DEBUG manager: Successfully loaded plugin `vagrant-disksize`.
 INFO manager: Loading plugin `vagrant-remove-old-box-versions` with default require: `vagrant-remove-old-box-versions`
 INFO manager: Registered plugin: remove-old-versions
DEBUG manager: Successfully loaded plugin `vagrant-remove-old-box-versions`.
 INFO loader: Set :root = ["#<Pathname:/Users/myUserName/Documents/OdooV12/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:/Users/myUserName/Documents/OdooV12/Vagrantfile>
DEBUG loader: Load procs for pathname: /Users/myUserName/Documents/OdooV12/Vagrantfile
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/local/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 6.1.10r138449
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 6.1.10
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_6_1
 INFO base: VBoxManage path: VBoxManage
DEBUG environment: Initial usable provider list: [[6, :virtualbox]]
DEBUG environment: Priority sorted usable provider list: [:virtualbox]
DEBUG environment: Preferred provider list: []
DEBUG environment: Using provider `virtualbox` as it is the highest priority in the usable list.
 INFO base: VBoxManage path: VBoxManage
DEBUG meta: Finding driver for VirtualBox version: 6.1.10
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_6_1
 INFO base: VBoxManage path: VBoxManage
DEBUG environment: Initial usable provider list: [[6, :virtualbox]]
DEBUG environment: Priority sorted usable provider list: [:virtualbox]
DEBUG environment: Preferred provider list: []
DEBUG environment: Using provider `virtualbox` as it is the highest priority in the usable list.
 INFO loader: Set "70296675357160_machine_default" = []
 INFO loader: Loading configuration in order: [:home, :root, "70296675357160_machine_default"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO box_collection: Box found: ubuntu/bionic64 (virtualbox)
 INFO environment: Running hook: authenticate_box_url
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /Users/myUserName/Documents/OdooV12>]
DEBUG host: Trying: slackware
DEBUG host: Trying: freebsd
DEBUG host: Trying: void
DEBUG host: Trying: arch
DEBUG host: Trying: darwin
 INFO host: Detected: darwin!
 INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x00007fde70ab94a0>
 INFO warden: Calling IN action: #<VagrantPlugins::CloudCommand::AddAuthentication:0x00007fde72222e70>
DEBUG client: No authentication token in environment or /Users/myUserName/.vagrant.d/data/vagrant_login_token
 INFO warden: Calling OUT action: #<VagrantPlugins::CloudCommand::AddAuthentication:0x00007fde72222e70>
 INFO loader: Set :"70296683594960_ubuntu/bionic64_virtualbox" = ["#<Pathname:/Users/myUserName/.vagrant.d/boxes/ubuntu-VAGRANTSLASH-bionic64/20200325.0.0/virtualbox/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:/Users/myUserName/.vagrant.d/boxes/ubuntu-VAGRANTSLASH-bionic64/20200325.0.0/virtualbox/Vagrantfile>
DEBUG loader: Load procs for pathname: /Users/myUserName/.vagrant.d/boxes/ubuntu-VAGRANTSLASH-bionic64/20200325.0.0/virtualbox/Vagrantfile
 INFO loader: Loading configuration in order: [:"70296683594960_ubuntu/bionic64_virtualbox", :home, :root, "70296675357160_machine_default"]
DEBUG loader: Loading from: 70296683594960_ubuntu/bionic64_virtualbox (evaluating)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x00007fde71b74808>
 INFO environment: Running hook: environment_load
 INFO runner: Running action: environment_load #<Vagrant::Action::Builder:0x00007fde709db650>
DEBUG checkpoint_client: starting plugin check
 INFO cli: CLI: [] "status" []
DEBUG checkpoint_client: plugin check complete
DEBUG cli: Invoking command class: VagrantPlugins::CommandStatus::Command []
DEBUG checkpoint_client: no information received from checkpoint
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: []
DEBUG command:  -- options: nil
DEBUG command: Loading all machines...
 INFO command: Active machine found with name default. Using provider: virtualbox
 INFO environment: Getting machine: default (virtualbox)
 INFO environment: Uncached load of machine.
 INFO base: VBoxManage path: VBoxManage
DEBUG meta: Finding driver for VirtualBox version: 6.1.10
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_6_1
 INFO base: VBoxManage path: VBoxManage
 INFO loader: Set "70296675357160_machine_default" = []
 INFO loader: Loading configuration in order: [:home, :root, "70296675357160_machine_default"]
ERROR loader: Unknown config sources: [:"70296683594960_ubuntu/bionic64_virtualbox"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO box_collection: Box found: ubuntu/bionic64 (virtualbox)
 INFO environment: Running hook: authenticate_box_url
 INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x00007fde70b62528>
 INFO warden: Calling IN action: #<VagrantPlugins::CloudCommand::AddAuthentication:0x00007fde720c14c8>
DEBUG client: No authentication token in environment or /Users/myUserName/.vagrant.d/data/vagrant_login_token
 INFO warden: Calling OUT action: #<VagrantPlugins::CloudCommand::AddAuthentication:0x00007fde720c14c8>
 INFO loader: Set :"70296683594960_ubuntu/bionic64_virtualbox" = ["#<Pathname:/Users/myUserName/.vagrant.d/boxes/ubuntu-VAGRANTSLASH-bionic64/20200325.0.0/virtualbox/Vagrantfile>"]
 INFO loader: Loading configuration in order: [:"70296683594960_ubuntu/bionic64_virtualbox", :home, :root, "70296675357160_machine_default"]
DEBUG loader: Loading from: 70296683594960_ubuntu/bionic64_virtualbox (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO machine: Initializing machine: default
 INFO machine:   - Provider: VagrantPlugins::ProviderVirtualBox::Provider
 INFO machine:   - Box: #<Vagrant::Box:0x00007fde71b61d98>
 INFO machine:   - Data dir: /Users/myUserName/Documents/OdooV12/.vagrant/machines/default/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: "a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
 INFO base: VBoxManage path: VBoxManage
DEBUG meta: Finding driver for VirtualBox version: 6.1.10
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_6_1
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/local/bin/VBoxManage", "showvminfo", "a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"]
DEBUG subprocess: Command not in installer, not touching env vars.
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:                        OdooV12_default_1585219552291_27051
Groups:                      /
Guest OS:                    Ubuntu (64-bit)
UUID:                        a5ba528b-c51e-4fbb-a8d8-04c0d83e581d
Config file:                 /Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.vbox
Snapshot folder:             /Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Snapshots
Log folder:                  /Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Logs
Hardware UUID:               a5ba528b-c51e-4fbb-a8d8-04c0d83e581d
Memory size                  2048MB
Page Fusion:                 disabled
VRAM size:                   128MB
CPU exec cap:                100%
HPET:                        disabled
CPUProfile:                  host
Chipset:                     piix3
Firmware:                    BIOS
Number of CPUs:              2
PAE:                         enabled
Long Mode:                   enabled
Triple Fault Reset:          disabled
APIC:                        enabled
X2APIC:                      enabled
Nested VT-x/AMD-V:           disabled
CPUID Portability Level:     0
CPUID overrides:             None
Boot menu mode:              message and menu
Boot Device 1:               DVD
Boot Device 2:               HardDisk
Boot Device 3:               Not Assigned
Boot Device 4:               Not Assigned
ACPI:                        enabled
IOAPIC:                      enabled
BIOS APIC mode:              APIC
Time offset:                 0ms
RTC:                         UTC
Hardware Virtualization:     enabled
Nested Paging:               enabled
Large Pages:                 enabled
VT-x VPID:                   enabled
VT-x Unrestricted Exec.:     enabled
Paravirt. Provider:          Default
Effective Paravirt. Prov.:   KVM
State:                       powered off (since 2020-06-13T01:30:20.000000000)
Graphics Controller:         VBoxVGA
Monitor count:               1
3D Acceleration:             disabled
2D Video Acceleration:       disabled
Teleporter Enabled:          disabled
Teleporter Port:             0
Teleporter Address:
Teleporter Password:
Tracing Enabled:             disabled
Allow Tracing to Access VM:  disabled
Tracing Configuration:
Autostart Enabled:           disabled
Autostart Delay:             0
Default Frontend:
VM process priority:         default
Storage Controller Name (0):            IDE
Storage Controller Type (0):            PIIX4
Storage Controller Instance Number (0): 0
Storage Controller Max Port Count (0):  2
Storage Controller Port Count (0):      2
Storage Controller Bootable (0):        on
Storage Controller Name (1):            SCSI
Storage Controller Type (1):            LsiLogic
Storage Controller Instance Number (1): 0
Storage Controller Max Port Count (1):  16
Storage Controller Port Count (1):      16
Storage Controller Bootable (1):        on
SCSI (0, 0): /Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg.vdi (UUID: 5d9814e8-96d7-46cb-b1ff-df128c0bbea8)
SCSI (1, 0): /Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk (UUID: 9e6bd267-6292-47c3-9f6d-8af43f53f146)
NIC 1:                       MAC: 023967459CE6, 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 2:                       MAC: 08002761C308, Attachment: Bridged Interface 'en0: Ethernet', Cable connected: on, Trace: off (file: none), Type: 82540EM, Reported speed: 0 Mbps, Boot priority: 0, Promisc Policy: allow-all, 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:                      I/O base: 0x03f8, IRQ: 4, attached to raw file '/Users/myUserName/Documents/OdooV12/ubuntu-bionic-18.04-cloudimg-console.log'
, 16550A
UART 2:                      disabled
UART 3:                      disabled
UART 4:                      disabled
LPT 1:                       disabled
LPT 2:                       disabled
Audio:                       enabled (Driver: CoreAudio, Controller: AC97, Codec: STAC9700)
Audio playback:              disabled
Audio capture:               disabled
Clipboard Mode:              disabled
Drag and drop Mode:          disabled
VRDE:                        disabled
OHCI USB:                    disabled
EHCI USB:                    disabled
xHCI USB:                    disabled

USB Device Filters:

<none>

Bandwidth groups:  <none>

Shared folders:

Name: 'vagrant', Host path: '/Users/myUserName/Documents/OdooV12' (machine mapping), writable

Capturing:                   not active
Capture audio:               not active
Capture screens:             0
Capture file:                /Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.webm
Capture dimensions:          1024x768
Capture rate:                512kbps
Capture FPS:                 25kbps
Capture options:             ac_enabled=false

Guest:

Configured memory balloon size: 0MB

DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/local/bin/VBoxManage", "showvminfo", "a5ba528b-c51e-4fbb-a8d8-04c0d83e581d", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="OdooV12_default_1585219552291_27051"
groups="/"
ostype="Ubuntu (64-bit)"
UUID="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
CfgFile="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.vbox"
SnapFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Snapshots"
LogFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Logs"
hardwareuuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
memory=2048
pagefusion="off"
vram=128
cpuexecutioncap=100
hpet="off"
cpu-profile="host"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="on"
longmode="on"
triplefaultreset="off"
apic="on"
x2apic="on"
nested-hw-virt="off"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="dvd"
boot2="disk"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biosapic="apic"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="on"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
effparavirtprovider="kvm"
VMState="poweroff"
VMStateChangeTime="2020-06-13T01:30:20.000000000"
graphicscontroller="vboxvga"
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=""
vmprocpriority="default"
storagecontrollername0="IDE"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SCSI"
storagecontrollertype1="LsiLogic"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="16"
storagecontrollerportcount1="16"
storagecontrollerbootable1="on"
"IDE-0-0"="none"
"IDE-0-1"="none"
"IDE-1-0"="none"
"IDE-1-1"="none"
"SCSI-0-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg.vdi"
"SCSI-ImageUUID-0-0"="5d9814e8-96d7-46cb-b1ff-df128c0bbea8"
"SCSI-1-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk"
"SCSI-ImageUUID-1-0"="9e6bd267-6292-47c3-9f6d-8af43f53f146"
"SCSI-2-0"="none"
"SCSI-3-0"="none"
"SCSI-4-0"="none"
"SCSI-5-0"="none"
"SCSI-6-0"="none"
"SCSI-7-0"="none"
"SCSI-8-0"="none"
"SCSI-9-0"="none"
"SCSI-10-0"="none"
"SCSI-11-0"="none"
"SCSI-12-0"="none"
"SCSI-13-0"="none"
"SCSI-14-0"="none"
"SCSI-15-0"="none"
natnet1="nat"
macaddress1="023967459CE6"
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"
bridgeadapter2="en0: Ethernet"
macaddress2="08002761C308"
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="0x03f8,4"
uartmode1="file,/Users/myUserName/Documents/OdooV12/ubuntu-bionic-18.04-cloudimg-console.log"
uarttype1="16550A"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="coreaudio"
audio_out="off"
audio_in="off"
clipboard="disabled"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="vagrant"
SharedFolderPathMachineMapping1="/Users/myUserName/Documents/OdooV12"
videocap="off"
videocapaudio="off"
capturescreens="0"
capturefilename="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.webm"
captureres="1024x768"
capturevideorate=512
capturevideofps=25
captureopts="ac_enabled=false"
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO interface: Machine: metadata ["provider", :virtualbox, {:target=>:default}]
 INFO command: With machine: default (#<VagrantPlugins::ProviderVirtualBox::Provider:0x00007fde71b7d9d0 @logger=#<Log4r::Logger:0x00007fde71b7d980 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: default (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x00007fde71bbe868 @logger=#<Log4r::Logger:0x00007fde71bf4b48 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x00007fde71b7d980 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_6_1:0x00007fde71c34158 @logger=#<Log4r::Logger:0x00007fde70a534c0 @fullname="vagrant::provider::virtualbox_6_1", @outputters=[], @additive=true, @name="virtualbox_6_1", @path="vagrant::provider", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d">, @version="6.1.10">, @cap_logger=#<Log4r::Logger:0x00007fde70af8948 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x00007fde70af8ee8>:0x00007fde70b4a428>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x00007fde70af8d30 @items={:public_address=>#<Proc:0x00007fde70a69450@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x00007fde70a69360@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x00007fde70af8c68 @items={:public_address=>#<Proc:0x00007fde70b12aa0@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x00007fde70b12a28@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x00007fde70af8b78 @items={:forwarded_ports=>#<Proc:0x00007fde70a7a8e0@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00007fde70a7a8b8@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x00007fde70a7a890@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:37>, :configure_disks=>#<Proc:0x00007fde70a7a868@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:42>, :cleanup_disks=>#<Proc:0x00007fde70a7a840@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:47>, :validate_disk_ext=>#<Proc:0x00007fde70a7a818@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:52>, :get_default_disk_ext=>#<Proc:0x00007fde70a7a7f0@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:57>, :snapshot_list=>#<Proc:0x00007fde70a7a7c8@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:62>}, @results_cache={}>}>)
 INFO subprocess: Starting process: ["/usr/local/bin/VBoxManage", "showvminfo", "a5ba528b-c51e-4fbb-a8d8-04c0d83e581d", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="OdooV12_default_1585219552291_27051"
groups="/"
ostype="Ubuntu (64-bit)"
UUID="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
CfgFile="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.vbox"
SnapFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Snapshots"
LogFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Logs"
hardwareuuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
memory=2048
pagefusion="off"
vram=128
cpuexecutioncap=100
hpet="off"
cpu-profile="host"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="on"
longmode="on"
triplefaultreset="off"
apic="on"
x2apic="on"
nested-hw-virt="off"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="dvd"
boot2="disk"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biosapic="apic"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="on"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
effparavirtprovider="kvm"
VMState="poweroff"
VMStateChangeTime="2020-06-13T01:30:20.000000000"
graphicscontroller="vboxvga"
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=""
vmprocpriority="default"
storagecontrollername0="IDE"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SCSI"
storagecontrollertype1="LsiLogic"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="16"
storagecontrollerportcount1="16"
storagecontrollerbootable1="on"
"IDE-0-0"="none"
"IDE-0-1"="none"
"IDE-1-0"="none"
"IDE-1-1"="none"
"SCSI-0-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg.vdi"
"SCSI-ImageUUID-0-0"="5d9814e8-96d7-46cb-b1ff-df128c0bbea8"
"SCSI-1-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk"
"SCSI-ImageUUID-1-0"="9e6bd267-6292-47c3-9f6d-8af43f53f146"
"SCSI-2-0"="none"
"SCSI-3-0"="none"
"SCSI-4-0"="none"
"SCSI-5-0"="none"
"SCSI-6-0"="none"
"SCSI-7-0"="none"
"SCSI-8-0"="none"
"SCSI-9-0"="none"
"SCSI-10-0"="none"
"SCSI-11-0"="none"
"SCSI-12-0"="none"
"SCSI-13-0"="none"
"SCSI-14-0"="none"
"SCSI-15-0"="none"
natnet1="nat"
macaddress1="023967459CE6"
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"
bridgeadapter2="en0: Ethernet"
macaddress2="08002761C308"
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="0x03f8,4"
uartmode1="file,/Users/myUserName/Documents/OdooV12/ubuntu-bionic-18.04-cloudimg-console.log"
uarttype1="16550A"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="coreaudio"
audio_out="off"
audio_in="off"
clipboard="disabled"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="vagrant"
SharedFolderPathMachineMapping1="/Users/myUserName/Documents/OdooV12"
videocap="off"
videocapaudio="off"
capturescreens="0"
capturefilename="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.webm"
captureres="1024x768"
capturevideorate=512
capturevideofps=25
captureopts="ac_enabled=false"
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: []
DEBUG command:  -- options: nil
DEBUG command: Loading all machines...
 INFO command: Active machine found with name default. Using provider: virtualbox
 INFO environment: Getting machine: default (virtualbox)
 INFO environment: Returning cached machine: default (virtualbox)
 INFO command: With machine: default (#<VagrantPlugins::ProviderVirtualBox::Provider:0x00007fde71b7d9d0 @logger=#<Log4r::Logger:0x00007fde71b7d980 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: default (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x00007fde71bbe868 @logger=#<Log4r::Logger:0x00007fde71bf4b48 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x00007fde71b7d980 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_6_1:0x00007fde71c34158 @logger=#<Log4r::Logger:0x00007fde70a534c0 @fullname="vagrant::provider::virtualbox_6_1", @outputters=[], @additive=true, @name="virtualbox_6_1", @path="vagrant::provider", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d">, @version="6.1.10">, @cap_logger=#<Log4r::Logger:0x00007fde70af8948 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<VagrantLogger:0x00007fde709b22a0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00007fde71960d00 @mon_mutex=#<Thread::Mutex:0x00007fde71960c88>, @mon_mutex_owner_object_id=70296682563200, @mon_owner=nil, @mon_count=0, @name="stderr", @level=0, @formatter=#<Vagrant::Util::LoggingFormatter:0x00007fde71b8dad8 @formatter=#<Log4r::BasicFormatter:0x00007fde719795f8 @depth=7>>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00007fde709b2188 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x00007fde70af8ee8>:0x00007fde70b4a428>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x00007fde70af8d30 @items={:public_address=>#<Proc:0x00007fde70a69450@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x00007fde70a69360@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x00007fde70af8c68 @items={:public_address=>#<Proc:0x00007fde70b12aa0@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x00007fde70b12a28@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x00007fde70af8b78 @items={:forwarded_ports=>#<Proc:0x00007fde70a7a8e0@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00007fde70a7a8b8@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x00007fde70a7a890@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:37>, :configure_disks=>#<Proc:0x00007fde70a7a868@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:42>, :cleanup_disks=>#<Proc:0x00007fde70a7a840@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:47>, :validate_disk_ext=>#<Proc:0x00007fde70a7a818@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:52>, :get_default_disk_ext=>#<Proc:0x00007fde70a7a7f0@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:57>, :snapshot_list=>#<Proc:0x00007fde70a7a7c8@/opt/vagrant/embedded/gems/2.2.9/gems/vagrant-2.2.9/plugins/providers/virtualbox/plugin.rb:62>}, @results_cache={}>}>)
 INFO subprocess: Starting process: ["/usr/local/bin/VBoxManage", "showvminfo", "a5ba528b-c51e-4fbb-a8d8-04c0d83e581d", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="OdooV12_default_1585219552291_27051"
groups="/"
ostype="Ubuntu (64-bit)"
UUID="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
CfgFile="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.vbox"
SnapFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Snapshots"
LogFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Logs"
hardwareuuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
memory=2048
pagefusion="off"
vram=128
cpuexecutioncap=100
hpet="off"
cpu-profile="host"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="on"
longmode="on"
triplefaultreset="off"
apic="on"
x2apic="on"
nested-hw-virt="off"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="dvd"
boot2="disk"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biosapic="apic"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="on"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
effparavirtprovider="kvm"
VMState="poweroff"
VMStateChangeTime="2020-06-13T01:30:20.000000000"
graphicscontroller="vboxvga"
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=""
vmprocpriority="default"
storagecontrollername0="IDE"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SCSI"
storagecontrollertype1="LsiLogic"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="16"
storagecontrollerportcount1="16"
storagecontrollerbootable1="on"
"IDE-0-0"="none"
"IDE-0-1"="none"
"IDE-1-0"="none"
"IDE-1-1"="none"
"SCSI-0-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg.vdi"
"SCSI-ImageUUID-0-0"="5d9814e8-96d7-46cb-b1ff-df128c0bbea8"
"SCSI-1-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk"
"SCSI-ImageUUID-1-0"="9e6bd267-6292-47c3-9f6d-8af43f53f146"
"SCSI-2-0"="none"
"SCSI-3-0"="none"
"SCSI-4-0"="none"
"SCSI-5-0"="none"
"SCSI-6-0"="none"
"SCSI-7-0"="none"
"SCSI-8-0"="none"
"SCSI-9-0"="none"
"SCSI-10-0"="none"
"SCSI-11-0"="none"
"SCSI-12-0"="none"
"SCSI-13-0"="none"
"SCSI-14-0"="none"
"SCSI-15-0"="none"
natnet1="nat"
macaddress1="023967459CE6"
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"
bridgeadapter2="en0: Ethernet"
macaddress2="08002761C308"
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="0x03f8,4"
uartmode1="file,/Users/myUserName/Documents/OdooV12/ubuntu-bionic-18.04-cloudimg-console.log"
uarttype1="16550A"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="coreaudio"
audio_out="off"
audio_in="off"
clipboard="disabled"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="vagrant"
SharedFolderPathMachineMapping1="/Users/myUserName/Documents/OdooV12"
videocap="off"
videocapaudio="off"
capturescreens="0"
capturefilename="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.webm"
captureres="1024x768"
capturevideorate=512
capturevideofps=25
captureopts="ac_enabled=false"
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/local/bin/VBoxManage", "showvminfo", "a5ba528b-c51e-4fbb-a8d8-04c0d83e581d", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="OdooV12_default_1585219552291_27051"
groups="/"
ostype="Ubuntu (64-bit)"
UUID="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
CfgFile="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.vbox"
SnapFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Snapshots"
LogFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Logs"
hardwareuuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
memory=2048
pagefusion="off"
vram=128
cpuexecutioncap=100
hpet="off"
cpu-profile="host"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="on"
longmode="on"
triplefaultreset="off"
apic="on"
x2apic="on"
nested-hw-virt="off"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="dvd"
boot2="disk"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biosapic="apic"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="on"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
effparavirtprovider="kvm"
VMState="poweroff"
VMStateChangeTime="2020-06-13T01:30:20.000000000"
graphicscontroller="vboxvga"
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=""
vmprocpriority="default"
storagecontrollername0="IDE"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SCSI"
storagecontrollertype1="LsiLogic"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="16"
storagecontrollerportcount1="16"
storagecontrollerbootable1="on"
"IDE-0-0"="none"
"IDE-0-1"="none"
"IDE-1-0"="none"
"IDE-1-1"="none"
"SCSI-0-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg.vdi"
"SCSI-ImageUUID-0-0"="5d9814e8-96d7-46cb-b1ff-df128c0bbea8"
"SCSI-1-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk"
"SCSI-ImageUUID-1-0"="9e6bd267-6292-47c3-9f6d-8af43f53f146"
"SCSI-2-0"="none"
"SCSI-3-0"="none"
"SCSI-4-0"="none"
"SCSI-5-0"="none"
"SCSI-6-0"="none"
"SCSI-7-0"="none"
"SCSI-8-0"="none"
"SCSI-9-0"="none"
"SCSI-10-0"="none"
"SCSI-11-0"="none"
"SCSI-12-0"="none"
"SCSI-13-0"="none"
"SCSI-14-0"="none"
"SCSI-15-0"="none"
natnet1="nat"
macaddress1="023967459CE6"
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"
bridgeadapter2="en0: Ethernet"
macaddress2="08002761C308"
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="0x03f8,4"
uartmode1="file,/Users/myUserName/Documents/OdooV12/ubuntu-bionic-18.04-cloudimg-console.log"
uarttype1="16550A"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="coreaudio"
audio_out="off"
audio_in="off"
clipboard="disabled"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="vagrant"
SharedFolderPathMachineMapping1="/Users/myUserName/Documents/OdooV12"
videocap="off"
videocapaudio="off"
capturescreens="0"
capturefilename="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.webm"
captureres="1024x768"
capturevideorate=512
capturevideofps=25
captureopts="ac_enabled=false"
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO interface: Machine: provider-name [:virtualbox, {:target=>"default"}]
 INFO interface: Machine: state [:poweroff, {:target=>"default"}]
 INFO interface: Machine: state-human-short ["poweroff", {:target=>"default"}]
 INFO interface: Machine: state-human-long ["The VM is powered off. To restart the VM, simply run `vagrant up`", {:target=>"default"}]
 INFO subprocess: Starting process: ["/usr/local/bin/VBoxManage", "showvminfo", "a5ba528b-c51e-4fbb-a8d8-04c0d83e581d", "--machinereadable"]
DEBUG subprocess: Command not in installer, not touching env vars.
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="OdooV12_default_1585219552291_27051"
groups="/"
ostype="Ubuntu (64-bit)"
UUID="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
CfgFile="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.vbox"
SnapFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Snapshots"
LogFldr="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/Logs"
hardwareuuid="a5ba528b-c51e-4fbb-a8d8-04c0d83e581d"
memory=2048
pagefusion="off"
vram=128
cpuexecutioncap=100
hpet="off"
cpu-profile="host"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="on"
longmode="on"
triplefaultreset="off"
apic="on"
x2apic="on"
nested-hw-virt="off"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="dvd"
boot2="disk"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biosapic="apic"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="on"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
effparavirtprovider="kvm"
VMState="poweroff"
VMStateChangeTime="2020-06-13T01:30:20.000000000"
graphicscontroller="vboxvga"
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=""
vmprocpriority="default"
storagecontrollername0="IDE"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SCSI"
storagecontrollertype1="LsiLogic"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="16"
storagecontrollerportcount1="16"
storagecontrollerbootable1="on"
"IDE-0-0"="none"
"IDE-0-1"="none"
"IDE-1-0"="none"
"IDE-1-1"="none"
"SCSI-0-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg.vdi"
"SCSI-ImageUUID-0-0"="5d9814e8-96d7-46cb-b1ff-df128c0bbea8"
"SCSI-1-0"="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk"
"SCSI-ImageUUID-1-0"="9e6bd267-6292-47c3-9f6d-8af43f53f146"
"SCSI-2-0"="none"
"SCSI-3-0"="none"
"SCSI-4-0"="none"
"SCSI-5-0"="none"
"SCSI-6-0"="none"
"SCSI-7-0"="none"
"SCSI-8-0"="none"
"SCSI-9-0"="none"
"SCSI-10-0"="none"
"SCSI-11-0"="none"
"SCSI-12-0"="none"
"SCSI-13-0"="none"
"SCSI-14-0"="none"
"SCSI-15-0"="none"
natnet1="nat"
macaddress1="023967459CE6"
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"
bridgeadapter2="en0: Ethernet"
macaddress2="08002761C308"
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="0x03f8,4"
uartmode1="file,/Users/myUserName/Documents/OdooV12/ubuntu-bionic-18.04-cloudimg-console.log"
uarttype1="16550A"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="coreaudio"
audio_out="off"
audio_in="off"
clipboard="disabled"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="vagrant"
SharedFolderPathMachineMapping1="/Users/myUserName/Documents/OdooV12"
videocap="off"
videocapaudio="off"
capturescreens="0"
capturefilename="/Users/myUserName/VirtualBox VMs/OdooV12_default_1585219552291_27051/OdooV12_default_1585219552291_27051.webm"
captureres="1024x768"
capturevideorate=512
capturevideofps=25
captureopts="ac_enabled=false"
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO interface: info: Current machine states:

default                   poweroff (virtualbox)

The VM is powered off. To restart the VM, simply run `vagrant up`
Current machine states:

default                   poweroff (virtualbox)

The VM is powered off. To restart the VM, simply run `vagrant up`
 INFO environment: Running hook: environment_unload
 INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x00007fde70a90fa0>

And guess what.... Files are still there after several minutes. Weird. Even more, after a few seconds vm is running and I didn't as for vagrant up. Very strange behaviour.

Vartkat commented 4 years ago

One detail that could be relevant, as my bash script is run by launchd as root user, inside the script the commands are called by a sudo -E -u MyUserName. example : sudo -E -u MyUserName vagrant status

Perhaps vagrant doesn't like being run by a sudo but as it is called by launchd (so as root) every day at 3:30....

chrisroberts commented 4 years ago

Hi there,

The error you are encountering is due to how Vagrant is being started in your environment. Using sudo with the -E option results in Vagrant running as a different user, but the environment variables of the original root user persist. This results in different paths being generated for things like VAGRANT_HOME, and the VirtualBox VM directory. Since Vagrant is unable to locate the guest with the matching ID in the .vagrant file, it cleans the configuration and builds it from scratch. This behavior is the expected behavior.

There are various ways you can update your scripts/environment to resolve this issue and get the behavior you expect. The easiest is likely to update your sudo command so the Vagrant command is running as a regular logged in user: sudo -u USER -l COMMAND. That's one way it may be resolved, but the proper resolution will depend on requirements of your local system and the task being performed.

Cheers!

Vartkat commented 4 years ago

I'm not sure the sudo -E is the problem, in my script I set VAGRANT_CWD and even cd into the working directory before calling my vagrant commands. Perhaps there's other environnement variable to be set that I'm not aware of ?

for example here is my getstate function :

getstate () {
cd $1
cd $VAGRANTDIR
VAGRANT_CWD=$VAGRANTDIR
if [ $? -ne 0 ]; then ERR="can't get directory"; fi
VMSTATE=$($SUDO -E -u dikrankatchikian $VAGRANT status |$GREP default | $CUT -d " " -f 20)
if [ $? -ne 0 ]; then 
ERR="can't get vm status" 
$SYSLOG -s -k Facility com.apple.console Level Error Sender OdooBackupScript Message  "Can't get vmstatus"
fi
timestamp=$($DATE +%T)
MESSAGE="$MESSAGE VM state was $VMSTATE at $timestamp\n"
$SYSLOG -s -k Facility com.apple.console Level Error Sender OdooBackupScript Message  "VM State is $VMSTATE" 
}

or my startvm function :

startvm () {
getstate $VAGRANTDIR
if [ $VMSTATE == 'poweroff' ]; then
    $SUDO -E -u dikrankatchikian $VAGRANT up
    if [ $? -ne 0 ]; then 
        ERR="error starting vm"
        $SYSLOG -s -k Facility com.apple.console Level Error Sender OdooBackupScript Message "Error starting vm"
    fi
fi
$SYSLOG -s -k Facility com.apple.console Level Error Sender OdooBackupScript Message "VM started"
getstate $VAGRANTDIR
timestamp=$($DATE +%T) 
MESSAGE="$MESSAGE Odoo vm restarted at $timestamp\n"
}

and if ever that can help here is the sudo -l output :

$ sudo -U myUserName -l
Password:
Matching Defaults entries for myUserName on iMac-de-Dikran-2:
    env_reset, env_keep+=BLOCKSIZE, env_keep+="COLORFGBG COLORTERM", env_keep+=__CF_USER_TEXT_ENCODING, env_keep+="CHARSET LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE",
    env_keep+="LC_MESSAGES LC_MONETARY LC_NUMERIC LC_TIME", env_keep+="LINES COLUMNS", env_keep+=LSCOLORS, env_keep+=SSH_AUTH_SOCK, env_keep+=TZ, env_keep+="DISPLAY
    XAUTHORIZATION XAUTHORITY", env_keep+="EDITOR VISUAL", env_keep+="HOME MAIL", lecture_file=/etc/sudo_lecture

User myUserName may run the following commands on iMac-of-MyUserName:
    (ALL) ALL
ghost commented 4 years ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.