hashicorp / vagrant

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

`with_provider': missing keyword: :architecture (ArgumentError) #13349

Closed prof-ninjason closed 2 months ago

prof-ninjason commented 4 months ago

I don't think this is a bug, so I didn't officially format this.

I have been uploading boxes for at least two years, and now something changed, which adds "architecture" to the box. I just cannot figure out how to upload boxes via the commandline anymore after the newest changes to vagrant.

I have always done this: vagrant cloud provider upload prof-ninjason/parrot virtualbox 1.0.0 parrot/parrot.box

After the argument error, I've been trying to add the "architecture", like this: vagrant cloud provider upload prof-ninjason/parrot virtualbox amd64 1.0.0 parrot/parrot.box vagrant cloud provider upload prof-ninjason/parrot virtualbox:amd64 1.0.0 parrot/parrot.box vagrant cloud provider upload prof-ninjason/parrot virtualbox unknown 1.0.0 parrot/parrot.box

What am I missing here?

Vagrant is automatically disabling direct upload to backend storage.
Uploads directly to backend storage are currently only supported for
files 5G in size or smaller. Box file to upload is: 6.93GB
/opt/vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/util.rb:204:in `with_provider': missing keyword: :architecture (ArgumentError)
        from /opt/vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/provider/upload.rb:74:in `upload_provider'
        from /opt/vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/provider/upload.rb:44:in `execute'
        from /opt/vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/provider/root.rb:49:in `execute'
        from /opt/vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/root.rb:76:in `execute'
        from /opt/vagrant/embedded/gems/gems/vagrant-2.4.1/lib/vagrant/cli.rb:67:in `execute'
        from /opt/vagrant/embedded/gems/gems/vagrant-2.4.1/lib/vagrant/environment.rb:319:in `cli'
        from /opt/vagrant/embedded/gems/gems/vagrant-2.4.1/bin/vagrant:248:in `<main>'
phillipross commented 4 months ago

I hit the same thing and just assumed they didnt get around to releasing a CLI version that supported arch parameter yet :(

Stromweld commented 4 months ago

you need to install vagrant 2.4.0 or newer and then the command is: vagrant cloud publish --architecture amd64 --no-direct-upload bento/ubuntu-22.04 1.0.0 virtualbox builds/ubuntu-22.04-x86_64.virtualbox.box --force --release true you can also run vagrant cloud publish --help to see all the flags.

phillipross commented 4 months ago

excellent, thanks for the help!

prof-ninjason commented 4 months ago

you need to install vagrant 2.4.0 or newer and then the command is:

vagrant cloud publish --architecture amd64 --no-direct-upload bento/ubuntu-22.04 1.0.0 virtualbox builds/ubuntu-22.04-x86_64.virtualbox.box --force --release

you can also run vagrant cloud publish --help to see all the flags.

Thank you!

Edit: Take out "true" and it works flawlessly. I must have been doing it wrong for years.

Jean-Baptiste-Lasselle commented 4 months ago

you need to install vagrant 2.4.0 or newer and then the command is: vagrant cloud publish --architecture amd64 --no-direct-upload bento/ubuntu-22.04 1.0.0 virtualbox builds/ubuntu-22.04-x86_64.virtualbox.box --force --release true you can also run vagrant cloud publish --help to see all the flags.

Hello @Stromweld and all others,I have a hard time with publishing aswell, can'tfigure it out yet...:

Utilisateur@Utilisateur-PC MINGW64 ~/packman/packer/golden/debian12_remote (feature/set/ssh/key)
$ vagrant --version
Vagrant 2.4.1

Utilisateur@Utilisateur-PC MINGW64 ~/packman/packer/golden/debian12_remote (feature/set/ssh/key)
$ vagrant cloud publish -f --release --no-direct-upload -a amd64 --description "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -c "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c" -C "sha512" --version-description "first published version of the docker reference stack" decodeleco/debian12-docker 0.0.1-alpha virtualbox package.box
You are about to publish a box on Vagrant Cloud with the following options:
decodeleco/debian12-docker:   (v0.0.1-alpha) for provider 'virtualbox'
Automatic Release:     true
Box Architecture:      amd64
Box Description:       Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors
Version Description:   first published version of the docker reference stack
Failed to create box decodeleco/debian12-docker
Vagrant Cloud request failed - Resource not found!

Utilisateur@Utilisateur-PC MINGW64 ~/packman/packer/golden/debian12_remote (feature/set/ssh/key)
$ vagrant cloud publish -f --release -a amd64 --description "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -c "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c" -C "sha512" --version-description "first published version of the docker reference stack" decodeleco/debian12-docker 0.0.1-alpha virtualbox package.box
You are about to publish a box on Vagrant Cloud with the following options:
decodeleco/debian12-docker:   (v0.0.1-alpha) for provider 'virtualbox'
Automatic Release:     true
Box Architecture:      amd64
Box Description:       Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors
Version Description:   first published version of the docker reference stack
Failed to create box decodeleco/debian12-docker
Vagrant Cloud request failed - Resource not found!

And I have :

Utilisateur@Utilisateur-PC MINGW64 ~/packman/packer (feature/set/ssh/key)
$ vagrant cloud box create --description "Vagrant box for a debian 12 vm, with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -s "debian 12 + docker + docker-compose" decoderleco/debian12-docker
Failed to create box decoderleco/debian12-docker
Box with name debian12-docker already exists

...

Thanksto all who have been feeding theissue here, I 'm a taker for any suggestion...

Stromweld commented 4 months ago

@Jean-Baptiste-Lasselle have you tried removing the -alpha from your version number. With semantic versioning anything less than 1.0.0 is considered similar to alpha or beta. 1.0.0 then signifies first production ready release. web gui for uploading a box also has this link as guide for how it has to be versioned http://guides.rubygems.org/patterns/#semantic-versioning.

Jean-Baptiste-Lasselle commented 4 months ago
vagrant cloud publish -f --release -a amd64 --description "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -c "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c" -C "sha512" --version-description "first published version of the docker reference stack" decodeleco/debian12-docker 0.0.1-alpha virtualbox package.box

Thank you very much for youranswer @Stromweld , I just ran the test, here is the result:

$ vagrant cloud publish -f --release -a amd64 --description "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -c "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c" -C "sha512" --version-description "first published version of the docker reference stack" decodeleco/debian12-docker 0.0.1 virtualbox package.box
You are about to publish a box on Vagrant Cloud with the following options:
decodeleco/debian12-docker:   (v0.0.1) for provider 'virtualbox'
Automatic Release:     true
Box Architecture:      amd64
Box Description:       Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors
Version Description:   first published version of the docker reference stack
Failed to create box decodeleco/debian12-docker
Vagrant Cloud request failed - Resource not found!

Here what's even more disturbing:

$ vagrant cloud box create --description "Vagrant box for a debian 12 vm, with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -s "debian 12 + docker + docker-compose" decoderleco/debian12-docker
Failed to create box decoderleco/debian12-docker
Box with name debian12-docker already exists
$ vagrant cloud box update --description "Weird Vagrant box for a debian 12 vm, with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -s "debian 12 + docker + docker-compose" decoderleco/debian12-docker
Updated box decoderleco/debian12-docker
C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/util.rb:247:in `box_info': no matches (RuntimeError)
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/util.rb:132:in `format_box_results'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/update.rb:70:in `block in update_box'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/util.rb:170:in `with_box'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/update.rb:64:in `update_box'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/update.rb:46:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/root.rb:49:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/root.rb:76:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/lib/vagrant/cli.rb:67:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/lib/vagrant/environment.rb:319:in `cli'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/bin/vagrant:248:in `<main>'

$ vagrant cloud box show decoderleco/debian12-docker
C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/util.rb:247:in `box_info': no matches (RuntimeError)
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/util.rb:132:in `format_box_results'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/show.rb:109:in `block (2 levels) in show_box'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/show.rb:108:in `each'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/show.rb:108:in `block in show_box'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/util.rb:170:in `with_box'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/show.rb:70:in `show_box'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/show.rb:54:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/box/root.rb:49:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/root.rb:76:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/lib/vagrant/cli.rb:67:in `execute'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/lib/vagrant/environment.rb:319:in `cli'
        from C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/bin/vagrant:248:in `<main>'

$ vagrant cloud box show --providers virtualbox decoderleco/debian12-docker
No matches found for decoderleco/debian12-docker
Filters applied:
  Architectures: N/A
  Providers:     virtualbox
  Versions:      N/A

image

image

I'm running on windows, in git bash.

Also:

Thank you so much for helping, it's my only left blocking point, for a significant building block of a platform I work on

The publish command in debug mode

Here:

$ vagrant cloud publish --debug -f --release -a amd64 --description "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors" -c "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c" -C "sha512" --version-description "first published version of the docker reference stack" decodeleco/debian12-docker 0.0.1 virtualbox package.box
 INFO global: Vagrant version: 2.4.1
 INFO global: Ruby version: 3.1.4
 INFO global: RubyGems version: 3.3.26
 INFO global: VAGRANT_EXECUTABLE="C:\\Program Files\\Vagrant\\embedded\\gems\\gems\\vagrant-2.4.1\\bin\\vagrant"
 INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\Program Files\\Vagrant\\embedded"
 INFO global: VAGRANT_INSTALLER_ENV="1"
 INFO global: VAGRANT_INSTALLER_VERSION="2"
 INFO global: VAGRANT_LOG="debug"
DEBUG global: vagrant ssl helper found for loading ssl providers
DEBUG global: ssl providers successfully loaded
 WARN global: resolv replacement has not been enabled!
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/autocomplete/plugin.rb
 INFO manager: Registered plugin: autocomplete command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cap/plugin.rb
 INFO manager: Registered plugin: cap command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/cloud/plugin.rb
 INFO manager: Registered plugin: vagrant-cloud
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/login/plugin.rb
 INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/port/plugin.rb
 INFO manager: Registered plugin: port command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/powershell/plugin.rb
 INFO manager: Registered plugin: powershell command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/provider/plugin.rb
 INFO manager: Registered plugin: provider command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/push/plugin.rb
 INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/serve/plugin.rb
 INFO manager: Registered plugin: start Vagrant server
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/snapshot/plugin.rb
 INFO manager: Registered plugin: snapshot command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/upload/plugin.rb
 INFO manager: Registered plugin: upload command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/validate/plugin.rb
 INFO manager: Registered plugin: validate command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/winrm/plugin.rb
 INFO manager: Registered plugin: winrm command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/commands/winrm_config/plugin.rb
 INFO manager: Registered plugin: winrm-config command
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/communicators/winssh/plugin.rb
 INFO manager: Registered plugin: windows ssh communicator
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/alma/plugin.rb
 INFO manager: Registered plugin: Alma guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/alpine/plugin.rb
 INFO manager: Registered plugin: Alpine guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/alt/plugin.rb
 INFO manager: Registered plugin: ALT Platform guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/amazon/plugin.rb
 INFO manager: Registered plugin: Amazon Linux guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/atomic/plugin.rb
 INFO manager: Registered plugin: Atomic Host guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/bsd/plugin.rb
 INFO manager: Registered plugin: BSD-based guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/centos/plugin.rb
 INFO manager: Registered plugin: CentOS guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/dragonflybsd/plugin.rb
 INFO manager: Registered plugin: DragonFly BSD guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/elementary/plugin.rb
 INFO manager: Registered plugin: Elementary guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/haiku/plugin.rb
 INFO manager: Registered plugin: Haiku guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/kali/plugin.rb
 INFO manager: Registered plugin: Kali guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/openwrt/plugin.rb
 INFO manager: Registered plugin: OpenWrt guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/photon/plugin.rb
 INFO manager: Registered plugin: VMware Photon guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/rocky/plugin.rb
 INFO manager: Registered plugin: Rocky guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/trisquel/plugin.rb
 INFO manager: Registered plugin: Trisquel guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/alt/plugin.rb
 INFO manager: Registered plugin: ALT Platform host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/suse/plugin.rb
 INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/void/plugin.rb
 INFO manager: Registered plugin: Void host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/container/plugin.rb
 INFO manager: Registered plugin: container
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/podman/plugin.rb
 INFO manager: Registered plugin: podman
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/pushes/atlas/plugin.rb
 INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/pushes/ftp/plugin.rb
 INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/pushes/heroku/plugin.rb
 INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/pushes/local-exec/plugin.rb
 INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/pushes/noop/plugin.rb
 INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: C:/Program Files/Vagrant/embedded/gems/gems/vagrant-2.4.1/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
 INFO vagrant: `vagrant` invoked: ["cloud", "publish", "--debug", "-f", "--release", "-a", "amd64", "--description", "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors", "-c", "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c", "-C", "sha512", "--version-description", "first published version of the docker reference stack", "decodeleco/debian12-docker", "0.0.1", "virtualbox", "package.box"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x000002151152d398>)
 INFO environment:   - cwd: C:/Users/Utilisateur/packman/packer/golden/debian12_remote
 INFO environment: Home path: C:/Users/Utilisateur/.vagrant.d
DEBUG environment: Effective local data path: C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant
 INFO environment: Local data path: C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant
DEBUG environment: Creating: C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant
DEBUG manager: Enabling localized plugins
 INFO manager: Plugins:
DEBUG solution_file: new solution file instance plugin_file=C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/plugins.json solution_file=C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/bundler/local.sol
DEBUG solution_file: missing file so skipping loading
DEBUG bundler: solution file in use for init: <Vagrant::Bundler::SolutionFile:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/plugins.json:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.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 solution_file: plugin file does not exist, not storing solution
DEBUG bundler: solution set stored to - <Vagrant::Bundler::SolutionFile:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/plugins.json:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/bundler/local.sol:invalid>
 INFO manager: Loading plugins...
DEBUG manager: Enabling globalized plugins
 INFO manager: Plugins:
DEBUG solution_file: new solution file instance plugin_file=C:/Users/Utilisateur/.vagrant.d/plugins.json solution_file=C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/bundler/global.sol
DEBUG solution_file: missing file so skipping loading
DEBUG bundler: solution file in use for init: <Vagrant::Bundler::SolutionFile:C:/Users/Utilisateur/.vagrant.d/plugins.json:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/bundler/global.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 solution_file: plugin file does not exist, not storing solution
DEBUG bundler: solution set stored to - <Vagrant::Bundler::SolutionFile:C:/Users/Utilisateur/.vagrant.d/plugins.json:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/.vagrant/bundler/global.sol:invalid>
 INFO manager: Loading plugins...
 INFO loader: Set :root = ["#<Pathname:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:C:/Users/Utilisateur/packman/packer/golden/debian12_remote/Vagrantfile>
DEBUG loader: Load procs for pathname: C:/Users/Utilisateur/packman/packer/golden/debian12_remote/Vagrantfile
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO subprocess: Starting process: ["C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0/powershell.EXE", "-NoLogo", "-NoProfile", "-NonInteractive", "-ExecutionPolicy", "Bypass", "-Command", "Write-Output $PSVersionTable.PSVersion.Major"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 30
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0/powershell.EXE", "-NoLogo", "-NoProfile", "-NonInteractive", "-ExecutionPolicy", "Bypass", "-Command", "(new-object System.Security.Principal.WindowsPrincipal([System.Security.Principal.WindowsIdentity]::GetCurrent())).IsInRole([System.Security.Principal.WindowsBuiltInRole]::Administrator)"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\jibl_vbox\install
 INFO base: VBoxManage path: C:\jibl_vbox\install\VBoxManage.exe
DEBUG meta: validating LANG value for virtualbox cli commands
 INFO subprocess: Starting process: ["C:\\Program Files\\Vagrant\\embedded\\usr\\bin/locale.EXE", "-a"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: list of available C locales: ["C", "C.utf8", "POSIX", "en_US.utf8"]
DEBUG meta: valid variation found for LANG value: C.utf8
DEBUG meta: LANG value set: "C.utf8"
 INFO subprocess: Starting process: ["C:\\jibl_vbox\\install\\VBoxManage.exe", "--version"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 7.0.6
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_7_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\jibl_vbox\install
 INFO base: VBoxManage path: C:\jibl_vbox\install\VBoxManage.exe
DEBUG environment: Initial usable provider list: [[4, :hyperv], [6, :virtualbox]]
DEBUG environment: Priority sorted usable provider list: [:virtualbox, :hyperv]
DEBUG environment: Preferred provider list: []
DEBUG environment: Using provider `hyperv` detected in configuration and usable.
 INFO loader: Set "980_machine_source" = ["[\"2\", #<Proc:0x0000021511e25ab8 C:/Users/Utilisateur/packman/packer/golden/debian12_remote/Vagrantfile:22>]"]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x0000021511e25ab8 C:/Users/Utilisateur/packman/packer/golden/debian12_remote/Vagrantfile:22>]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_source"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_source (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO loader: Set :"980_vm_source_generic/debian12_hyperv" = ["[\"2\", #<Proc:0x0000021511d8d448>]"]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x0000021511d8d448>]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_source", :"980_vm_source_generic/debian12_hyperv"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_source (cache)
DEBUG loader: Loading from: 980_vm_source_generic/debian12_hyperv (evaluating)
DEBUG dummy_config: found name maxmemory=
DEBUG dummy_config: setting instance variable name maxmemory
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 WARN vagrantfile: Failed to locate generic/debian12 with version
 WARN vagrantfile: Performing lookup with initial values generic/debian12 with version
 INFO loader: Set :"980_vm_source_generic/debian12_hyperv" = ["[\"2\", #<Proc:0x0000021511d8d448>]"]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_source", :"980_vm_source_generic/debian12_hyperv"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_source (cache)
DEBUG loader: Loading from: 980_vm_source_generic/debian12_hyperv (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO loader: Set :"980_vm_source_generic/debian12_hyperv" = ["[\"2\", #<Proc:0x0000021511d8d448>]"]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_source", :"980_vm_source_generic/debian12_hyperv"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_source (cache)
DEBUG loader: Loading from: 980_vm_source_generic/debian12_hyperv (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO loader: Set "980_machine_output" = ["[\"2\", #<Proc:0x0000021511e25860 C:/Users/Utilisateur/packman/packer/golden/debian12_remote/Vagrantfile:27>]"]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x0000021511e25860 C:/Users/Utilisateur/packman/packer/golden/debian12_remote/Vagrantfile:27>]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_output"]
 WARN loader: Unknown config sources: ["980_machine_source", :"980_vm_source_generic/debian12_hyperv"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_output (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO loader: Set :"980_vm_output_golden_debian12_remote_hyperv" = ["[\"2\", #<Proc:0x0000021511d8d448>]"]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_output", :"980_vm_output_golden_debian12_remote_hyperv"]
 WARN loader: Unknown config sources: ["980_machine_source", :"980_vm_source_generic/debian12_hyperv"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_output (cache)
DEBUG loader: Loading from: 980_vm_output_golden_debian12_remote_hyperv (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 WARN vagrantfile: Failed to locate golden_debian12_remote with version
 WARN vagrantfile: Performing lookup with initial values golden_debian12_remote with version
 INFO loader: Set :"980_vm_output_golden_debian12_remote_hyperv" = ["[\"2\", #<Proc:0x0000021511d8d448>]"]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_output", :"980_vm_output_golden_debian12_remote_hyperv"]
 WARN loader: Unknown config sources: ["980_machine_source", :"980_vm_source_generic/debian12_hyperv"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_output (cache)
DEBUG loader: Loading from: 980_vm_output_golden_debian12_remote_hyperv (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO loader: Set :"980_vm_output_golden_debian12_remote_hyperv" = ["[\"2\", #<Proc:0x0000021511d8d448>]"]
 INFO loader: Loading configuration in order: [:home, :root, "980_machine_output", :"980_vm_output_golden_debian12_remote_hyperv"]
 WARN loader: Unknown config sources: ["980_machine_source", :"980_vm_source_generic/debian12_hyperv"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 980_machine_output (cache)
DEBUG loader: Loading from: 980_vm_output_golden_debian12_remote_hyperv (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO vmconfig: config class lookup for provider :hyperv gave us base class: VagrantPlugins::HyperV::Config
 INFO vmconfig: config class lookup for provider :libvirt gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name disk_bus=
DEBUG dummy_config: setting instance variable name disk_bus
DEBUG dummy_config: found name driver=
DEBUG dummy_config: setting instance variable name driver
DEBUG dummy_config: found name video_vram=
DEBUG dummy_config: setting instance variable name video_vram
DEBUG dummy_config: found name memory=
DEBUG dummy_config: setting instance variable name memory
DEBUG dummy_config: found name cpus=
DEBUG dummy_config: setting instance variable name cpus
 INFO vmconfig: config class lookup for provider :parallels gave us base class: Vagrant::Config::V2::DummyConfig
 INFO vmconfig: config class lookup for provider :virtualbox gave us base class: VagrantPlugins::ProviderVirtualBox::Config
 INFO vmconfig: config class lookup for provider :vmware_fusion gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_workstation gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO vmconfig: config class lookup for provider :vmware_desktop gave us base class: Vagrant::Config::V2::DummyConfig
DEBUG dummy_config: found name whitelist_verified=
DEBUG dummy_config: setting instance variable name whitelist_verified
DEBUG dummy_config: found name gui=
DEBUG dummy_config: setting instance variable name gui
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x00000215127f1880>
 INFO environment: Running hook: environment_load
 INFO runner: Running action: environment_load #<Vagrant::Action::Builder:0x0000021512948e90>
DEBUG checkpoint_client: starting plugin check
 INFO cli: CLI: [] "cloud" ["publish", "-f", "--release", "-a", "amd64", "--description", "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors", "-c", "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c", "-C", "sha512", "--version-description", "first published version of the docker reference stack", "decodeleco/debian12-docker", "0.0.1", "virtualbox", "package.box"]
DEBUG checkpoint_client: plugin check complete
DEBUG cli: Invoking command class: VagrantPlugins::CloudCommand::Command::Root ["publish", "-f", "--release", "-a", "amd64", "--description", "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors", "-c", "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c", "-C", "sha512", "--version-description", "first published version of the docker reference stack", "decodeleco/debian12-docker", "0.0.1", "virtualbox", "package.box"]
DEBUG checkpoint_client: no information received from checkpoint
DEBUG root: Invoking command class: VagrantPlugins::CloudCommand::Command::Publish ["-f", "--release", "-a", "amd64", "--description", "Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors", "-c", "8a0559661b8822f4b67fdd24c4cff3fbd38db26719f55d1627e32bd220c1098bf7a243c70ea80faab8b6d1d3e35bdabb7ed42156652b3e175f3cbb6ef157d94c", "-C", "sha512", "--version-description", "first published version of the docker reference stack", "decodeleco/debian12-docker", "0.0.1", "virtualbox", "package.box"]
DEBUG client: Using authentication token from disk at C:/Users/Utilisateur/.vagrant.d/data/vagrant_login_token
 INFO logger: excon REQUEST method=:get identifier="64a43221-d43f-4ef3-9fba-b8242ee7526a" url="https://vagrantcloud.com/api/v2/authenticate" headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 64a43221-d43f-4ef3-9fba-b8242ee7526a" duration="817ms"
DEBUG logger: excon REQUEST chunk_size=1048576 ciphers="ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:DES-CBC3-SHA:!DSS" connect_timeout=60 debug_request=false debug_response=false dns_timeouts=nil headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 64a43221-d43f-4ef3-9fba-b8242ee7526a" idempotent=true instrumentor_name="excon" middlewares="Excon::Middleware::ResponseParser, Excon::Middleware::Expects, Excon::Middleware::Idempotent, Excon::Middleware::Instrumentor, Excon::Middleware::Mock" mock=false nonblock=true omit_default_port=false persistent=false read_timeout=60 resolv_resolver=nil retry_errors="Excon::Error::Timeout, Excon::Error::Socket, Excon::Error::HTTPStatus" retry_limit=3 ssl_verify_peer=true ssl_uri_schemes="https" stubs=:global tcp_nodelay=false thread_safe_sockets=true timeout=nil uri_parser=URI versions="excon/0.109.0 (x64-mingw32) ruby/3.1.4" write_timeout=60 host="vagrantcloud.com" hostname="vagrantcloud.com" path="/api/v2/authenticate" port=443 query=nil scheme="https" instrumentor=#<VagrantCloud::Instrumentor::Collection:0x0000021512857978 @lock=#<Thread::Mutex:0x00000215128578b0>, @subscriptions=#<Set: {}>, @instrumentors=#<Set: {#<VagrantCloud::Instrumentor::Logger:0x00000215128576a8>}>> method=:get expects="200, 201, 204" retry_interval=2 retries_remaining=3 remote_ip="99.86.91.80" timing="start_time: 2024-03-04 22:39:08 +0100, complete_time: 2024-03-04 22:39:09 +0100, duration: 0.8178323"
 INFO logger: excon RESPONSE status=200 identifier="64a43221-d43f-4ef3-9fba-b8242ee7526a" body="{\"description\":\"The token used to publish vagrant boxes  forhttps://github.com/decoder-leco\",\"token\":null,\"token_hash\":\"387a7cef09f8954663a8a2da3eae9c42a6019a4bad0f82b0ced9d5a19384c23478dce1f7a96ecd9c628331c1fefae1adbf3263f416a6ab9f6aae81e0d4ed636d\",\"created_at\":\"2024-03-03T23:06:05.519+01:00\",\"user\":{\"username\":\"Jean-Baptiste-Lasselle\"}}" duration="0ms"
DEBUG logger: excon RESPONSE body="{\"description\":\"The token used to publish vagrant boxes  forhttps://github.com/decoder-leco\",\"token\":null,\"token_hash\":\"387a7cef09f8954663a8a2da3eae9c42a6019a4bad0f82b0ced9d5a19384c23478dce1f7a96ecd9c628331c1fefae1adbf3263f416a6ab9f6aae81e0d4ed636d\",\"created_at\":\"2024-03-03T23:06:05.519+01:00\",\"user\":{\"username\":\"Jean-Baptiste-Lasselle\"}}" cookies="_atlas_session_data=L0FvYSt3L0JBRU4xQlFUd3lJY1FDek81MXBqRkhLcHM2Q2xkZjVvUkFTYWZhazBlRVJWMEx4UFkzUzI2Qkk3UU9saGh1SVNON0tiN2lHN3UxaEt0UklPenFkQkl5YjVCTDM3OU1aUXhVa3UzVXQzaHZPRzJndnFGL2dKcFoxaE45UGFSd0VsdHF4K0c1Mld0V2VWNjgwLytOQlVodHUxWmhDYlpjSlE0YTMvazVWaFZQZUJQU3d3cFAvWlFpM1RuajJvNTlYRmZVMEFia1F2blRoWXVUZz09LS1mUG1iQW9sdU5NcUlQYlFRd1NMZUV3PT0%3D--7a1049dec3bbacaf5cd5a2c5c9562ed60f0304fe; path=/; expires=Wed, 03 Apr 2024 21:39:09 GMT; secure; HttpOnly" host="vagrantcloud.com" scheme="https" method=:get headers="Content-Type: application/json; charset=utf-8, Connection: keep-alive, Server: Cowboy, Date: Mon, 04 Mar 2024 21:39:09 GMT, Report-To: {\"group\":\"heroku-nel\",\"max_age\":3600,\"endpoints\":[{\"url\":\"https://nel.heroku.com/reports?ts=1709588349&sid=929419e7-33ea-4e2f-85f0-7d8b7cd5cbd6&s=7WUDw%2Bh%2FL76MHq6IJSZdWpdbLXcUSjxwY9ZK5gUy1S8%3D\"}]}, Reporting-Endpoints: heroku-nel=https://nel.heroku.com/reports?ts=1709588349&sid=929419e7-33ea-4e2f-85f0-7d8b7cd5cbd6&s=7WUDw%2Bh%2FL76MHq6IJSZdWpdbLXcUSjxwY9ZK5gUy1S8%3D, Nel: {\"report_to\":\"heroku-nel\",\"max_age\":3600,\"success_fraction\":0.005,\"failure_fraction\":0.05,\"response_headers\":[\"Via\"]}, X-Frame-Options: SAMEORIGIN, X-Xss-Protection: 1; mode=block, X-Content-Type-Options: nosniff, X-Download-Options: noopen, X-Permitted-Cross-Domain-Policies: none, Referrer-Policy: strict-origin-when-cross-origin, Etag: W/\"608971ae259e5d530d0da58a2f10f204\", Cache-Control: max-age=0, private, must-revalidate, Set-Cookie: _atlas_session_data=L0FvYSt3L0JBRU4xQlFUd3lJY1FDek81MXBqRkhLcHM2Q2xkZjVvUkFTYWZhazBlRVJWMEx4UFkzUzI2Qkk3UU9saGh1SVNON0tiN2lHN3UxaEt0UklPenFkQkl5YjVCTDM3OU1aUXhVa3UzVXQzaHZPRzJndnFGL2dKcFoxaE45UGFSd0VsdHF4K0c1Mld0V2VWNjgwLytOQlVodHUxWmhDYlpjSlE0YTMvazVWaFZQZUJQU3d3cFAvWlFpM1RuajJvNTlYRmZVMEFia1F2blRoWXVUZz09LS1mUG1iQW9sdU5NcUlQYlFRd1NMZUV3PT0%3D--7a1049dec3bbacaf5cd5a2c5c9562ed60f0304fe; path=/; expires=Wed, 03 Apr 2024 21:39:09 GMT; secure; HttpOnly, X-Request-Id: 64a43221-d43f-4ef3-9fba-b8242ee7526a, X-Runtime: 0.031323, Strict-Transport-Security: max-age=63072000; includeSubDomains; preload, Via: 1.1 vegur, 1.1 0d0a4fb22cacae11e152f2b1f30005a4.cloudfront.net (CloudFront), X-Cache: Miss from cloudfront, X-Amz-Cf-Pop: CDG50-C1, X-Amz-Cf-Id: ay5JR8tZSv___TVvl5A8wu6nZ89JPpbTiOsJGdL5KLXAolf2gafl_g==" path="/api/v2/authenticate" query=nil port=443 omit_default_port=false status=200 status_line="HTTP/1.1 200 OK\r\n" reason_phrase="OK" remote_ip="99.86.91.80" local_port=1837 local_address="192.168.25.236" timing="start_time: 2024-03-04 22:39:10 +0100, complete_time: 2024-03-04 22:39:10 +0100, duration: 1.61e-05"
 INFO interface: warn: You are about to publish a box on Vagrant Cloud with the following options:
You are about to publish a box on Vagrant Cloud with the following options:
 INFO interface: info: decodeleco/debian12-docker:   (v0.0.1) for provider 'virtualbox'
decodeleco/debian12-docker:   (v0.0.1) for provider 'virtualbox'
 INFO interface: info: Automatic Release:     true
Automatic Release:     true
 INFO interface: info: Box Architecture:      amd64
Box Architecture:      amd64
 INFO interface: info: Box Description:       Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors
Box Description:       Vagrant box for a debian 12 vm,with docker and docker compose installed, designed for the https://github.com/decoder-leco contributors
 INFO interface: info: Version Description:   first published version of the docker reference stack
Version Description:   first published version of the docker reference stack
DEBUG client: Using authentication token from disk at C:/Users/Utilisateur/.vagrant.d/data/vagrant_login_token
 INFO logger: excon REQUEST method=:get identifier="d5d58cb4-5949-43bd-b934-6cbc6cd7c8d7" url="https://vagrantcloud.com/api/v2/authenticate" headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: d5d58cb4-5949-43bd-b934-6cbc6cd7c8d7" duration="591ms"
DEBUG logger: excon REQUEST chunk_size=1048576 ciphers="ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:DES-CBC3-SHA:!DSS" connect_timeout=60 debug_request=false debug_response=false dns_timeouts=nil headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: d5d58cb4-5949-43bd-b934-6cbc6cd7c8d7" idempotent=true instrumentor_name="excon" middlewares="Excon::Middleware::ResponseParser, Excon::Middleware::Expects, Excon::Middleware::Idempotent, Excon::Middleware::Instrumentor, Excon::Middleware::Mock" mock=false nonblock=true omit_default_port=false persistent=false read_timeout=60 resolv_resolver=nil retry_errors="Excon::Error::Timeout, Excon::Error::Socket, Excon::Error::HTTPStatus" retry_limit=3 ssl_verify_peer=true ssl_uri_schemes="https" stubs=:global tcp_nodelay=false thread_safe_sockets=true timeout=nil uri_parser=URI versions="excon/0.109.0 (x64-mingw32) ruby/3.1.4" write_timeout=60 host="vagrantcloud.com" hostname="vagrantcloud.com" path="/api/v2/authenticate" port=443 query=nil scheme="https" instrumentor=#<VagrantCloud::Instrumentor::Collection:0x0000021512b52920 @lock=#<Thread::Mutex:0x0000021512b52880>, @subscriptions=#<Set: {}>, @instrumentors=#<Set: {#<VagrantCloud::Instrumentor::Logger:0x0000021512b52650>}>> method=:get expects="200, 201, 204" retry_interval=2 retries_remaining=3 remote_ip="99.86.91.48" timing="start_time: 2024-03-04 22:39:10 +0100, complete_time: 2024-03-04 22:39:10 +0100, duration: 0.5915485"
 INFO logger: excon RESPONSE status=200 identifier="d5d58cb4-5949-43bd-b934-6cbc6cd7c8d7" body="{\"description\":\"The token used to publish vagrant boxes  forhttps://github.com/decoder-leco\",\"token\":null,\"token_hash\":\"387a7cef09f8954663a8a2da3eae9c42a6019a4bad0f82b0ced9d5a19384c23478dce1f7a96ecd9c628331c1fefae1adbf3263f416a6ab9f6aae81e0d4ed636d\",\"created_at\":\"2024-03-03T23:06:05.519+01:00\",\"user\":{\"username\":\"Jean-Baptiste-Lasselle\"}}" duration="0ms"
DEBUG logger: excon RESPONSE body="{\"description\":\"The token used to publish vagrant boxes  forhttps://github.com/decoder-leco\",\"token\":null,\"token_hash\":\"387a7cef09f8954663a8a2da3eae9c42a6019a4bad0f82b0ced9d5a19384c23478dce1f7a96ecd9c628331c1fefae1adbf3263f416a6ab9f6aae81e0d4ed636d\",\"created_at\":\"2024-03-03T23:06:05.519+01:00\",\"user\":{\"username\":\"Jean-Baptiste-Lasselle\"}}" cookies="_atlas_session_data=eUs2UjNyUkttK05tbzFyREZ3b2tTUTRxYks5dHdKdXNkRzN2UStKU1pvdEZMQU84WHFvVDkrT3dGQVdYajBWRGswby9aZkdyMXVtd1N2MWZ4T1YrejA5c0pFSEZ4bUsrVUxXSC91VW1IRUJXS0lyNTB0ZEp3Y1BYRWFJSGJuSUJDTi9uV0FJWUN2QWdrQVl1ZmhKQW42aXNZbkMxQm9hYUhOQVZ6ZXFJdktkMGg0aVdkUlk4NENsbkdVOU5ZbURGSnpYSDlHQzM5QzBPb2duTUF2QkxvQT09LS01VEd0aEtHcnBwMHY5bGRZWmJxTEZBPT0%3D--67af57d024af61029bb3076f82aff5edcadb9e1d; path=/; expires=Wed, 03 Apr 2024 21:39:11 GMT; secure; HttpOnly" host="vagrantcloud.com" scheme="https" method=:get headers="Content-Type: application/json; charset=utf-8, Connection: keep-alive, Server: Cowboy, Date: Mon, 04 Mar 2024 21:39:11 GMT, Report-To: {\"group\":\"heroku-nel\",\"max_age\":3600,\"endpoints\":[{\"url\":\"https://nel.heroku.com/reports?ts=1709588351&sid=929419e7-33ea-4e2f-85f0-7d8b7cd5cbd6&s=TTJjmZcT%2FSDRSch6rnW%2BLaQazg8YgAeTkDmo8v9nSNo%3D\"}]}, Reporting-Endpoints: heroku-nel=https://nel.heroku.com/reports?ts=1709588351&sid=929419e7-33ea-4e2f-85f0-7d8b7cd5cbd6&s=TTJjmZcT%2FSDRSch6rnW%2BLaQazg8YgAeTkDmo8v9nSNo%3D, Nel: {\"report_to\":\"heroku-nel\",\"max_age\":3600,\"success_fraction\":0.005,\"failure_fraction\":0.05,\"response_headers\":[\"Via\"]}, X-Frame-Options: SAMEORIGIN, X-Xss-Protection: 1; mode=block, X-Content-Type-Options: nosniff, X-Download-Options: noopen, X-Permitted-Cross-Domain-Policies: none, Referrer-Policy: strict-origin-when-cross-origin, Etag: W/\"608971ae259e5d530d0da58a2f10f204\", Cache-Control: max-age=0, private, must-revalidate, Set-Cookie: _atlas_session_data=eUs2UjNyUkttK05tbzFyREZ3b2tTUTRxYks5dHdKdXNkRzN2UStKU1pvdEZMQU84WHFvVDkrT3dGQVdYajBWRGswby9aZkdyMXVtd1N2MWZ4T1YrejA5c0pFSEZ4bUsrVUxXSC91VW1IRUJXS0lyNTB0ZEp3Y1BYRWFJSGJuSUJDTi9uV0FJWUN2QWdrQVl1ZmhKQW42aXNZbkMxQm9hYUhOQVZ6ZXFJdktkMGg0aVdkUlk4NENsbkdVOU5ZbURGSnpYSDlHQzM5QzBPb2duTUF2QkxvQT09LS01VEd0aEtHcnBwMHY5bGRZWmJxTEZBPT0%3D--67af57d024af61029bb3076f82aff5edcadb9e1d; path=/; expires=Wed, 03 Apr 2024 21:39:11 GMT; secure; HttpOnly, X-Request-Id: d5d58cb4-5949-43bd-b934-6cbc6cd7c8d7, X-Runtime: 0.054039, Strict-Transport-Security: max-age=63072000; includeSubDomains; preload, Via: 1.1 vegur, 1.1 834f63af56be39c339db32b1eb931e1a.cloudfront.net (CloudFront), X-Cache: Miss from cloudfront, X-Amz-Cf-Pop: CDG50-C1, X-Amz-Cf-Id: 5QfGLlcoyUOIKrI6sJyf7hj6iRZiN8hz8Crc_aYVMgjnPrdSg6KY3A==" path="/api/v2/authenticate" query=nil port=443 omit_default_port=false status=200 status_line="HTTP/1.1 200 OK\r\n" reason_phrase="OK" remote_ip="99.86.91.48" local_port=1838 local_address="192.168.25.236" timing="start_time: 2024-03-04 22:39:11 +0100, complete_time: 2024-03-04 22:39:11 +0100, duration: 1.3e-05"
 INFO logger: excon REQUEST method=:get identifier="569d78f6-31f8-4baf-a383-dfa61586ef65" url="https://vagrantcloud.com/api/v2/user/decodeleco" headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 569d78f6-31f8-4baf-a383-dfa61586ef65" duration="602ms"
DEBUG logger: excon REQUEST chunk_size=1048576 ciphers="ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:DES-CBC3-SHA:!DSS" connect_timeout=60 debug_request=false debug_response=false dns_timeouts=nil headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 569d78f6-31f8-4baf-a383-dfa61586ef65" idempotent=true instrumentor_name="excon" middlewares="Excon::Middleware::ResponseParser, Excon::Middleware::Expects, Excon::Middleware::Idempotent, Excon::Middleware::Instrumentor, Excon::Middleware::Mock" mock=false nonblock=true omit_default_port=false persistent=false read_timeout=60 resolv_resolver=nil retry_errors="Excon::Error::Timeout, Excon::Error::Socket, Excon::Error::HTTPStatus" retry_limit=3 ssl_verify_peer=true ssl_uri_schemes="https" stubs=:global tcp_nodelay=false thread_safe_sockets=true timeout=nil uri_parser=URI versions="excon/0.109.0 (x64-mingw32) ruby/3.1.4" write_timeout=60 host="vagrantcloud.com" hostname="vagrantcloud.com" path="/api/v2/user/decodeleco" port=443 query=nil scheme="https" instrumentor=#<VagrantCloud::Instrumentor::Collection:0x0000021512b52920 @lock=#<Thread::Mutex:0x0000021512b52880>, @subscriptions=#<Set: {}>, @instrumentors=#<Set: {#<VagrantCloud::Instrumentor::Logger:0x0000021512b52650>}>> method=:get expects="200, 201, 204" retry_interval=2 retries_remaining=3 remote_ip="99.86.91.80" timing="start_time: 2024-03-04 22:39:11 +0100, complete_time: 2024-03-04 22:39:11 +0100, duration: 0.6025283"
 INFO logger: excon RETRY method=:get identifier="569d78f6-31f8-4baf-a383-dfa61586ef65" url="https://vagrantcloud.com/api/v2/user/decodeleco" headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 569d78f6-31f8-4baf-a383-dfa61586ef65" duration="739ms"
DEBUG logger: excon RETRY chunk_size=1048576 ciphers="ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:DES-CBC3-SHA:!DSS" connect_timeout=60 debug_request=false debug_response=false dns_timeouts=nil headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 569d78f6-31f8-4baf-a383-dfa61586ef65" idempotent=true instrumentor_name="excon" middlewares="Excon::Middleware::ResponseParser, Excon::Middleware::Expects, Excon::Middleware::Idempotent, Excon::Middleware::Instrumentor, Excon::Middleware::Mock" mock=false nonblock=true omit_default_port=false persistent=false read_timeout=60 resolv_resolver=nil retry_errors="Excon::Error::Timeout, Excon::Error::Socket, Excon::Error::HTTPStatus" retry_limit=3 ssl_verify_peer=true ssl_uri_schemes="https" stubs=:global tcp_nodelay=false thread_safe_sockets=true timeout=nil uri_parser=URI versions="excon/0.109.0 (x64-mingw32) ruby/3.1.4" write_timeout=60 host="vagrantcloud.com" hostname="vagrantcloud.com" path="/api/v2/user/decodeleco" port=443 query=nil scheme="https" instrumentor=#<VagrantCloud::Instrumentor::Collection:0x0000021512b52920 @lock=#<Thread::Mutex:0x0000021512b52880>, @subscriptions=#<Set: {}>, @instrumentors=#<Set: {#<VagrantCloud::Instrumentor::Logger:0x0000021512b52650>}>> method=:get expects="200, 201, 204" retry_interval=2 retries_remaining=2 remote_ip="99.86.91.88" timing="start_time: 2024-03-04 22:39:15 +0100, complete_time: 2024-03-04 22:39:15 +0100, duration: 0.739436"
 INFO logger: excon RETRY method=:get identifier="569d78f6-31f8-4baf-a383-dfa61586ef65" url="https://vagrantcloud.com/api/v2/user/decodeleco" headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 569d78f6-31f8-4baf-a383-dfa61586ef65" duration="671ms"
DEBUG logger: excon RETRY chunk_size=1048576 ciphers="ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:DES-CBC3-SHA:!DSS" connect_timeout=60 debug_request=false debug_response=false dns_timeouts=nil headers="Host: vagrantcloud.com:443, Accept: application/json, Authorization: REDACTED, Content-Type: application/json, X-Request-Id: 569d78f6-31f8-4baf-a383-dfa61586ef65" idempotent=true instrumentor_name="excon" middlewares="Excon::Middleware::ResponseParser, Excon::Middleware::Expects, Excon::Middleware::Idempotent, Excon::Middleware::Instrumentor, Excon::Middleware::Mock" mock=false nonblock=true omit_default_port=false persistent=false read_timeout=60 resolv_resolver=nil retry_errors="Excon::Error::Timeout, Excon::Error::Socket, Excon::Error::HTTPStatus" retry_limit=3 ssl_verify_peer=true ssl_uri_schemes="https" stubs=:global tcp_nodelay=false thread_safe_sockets=true timeout=nil uri_parser=URI versions="excon/0.109.0 (x64-mingw32) ruby/3.1.4" write_timeout=60 host="vagrantcloud.com" hostname="vagrantcloud.com" path="/api/v2/user/decodeleco" port=443 query=nil scheme="https" instrumentor=#<VagrantCloud::Instrumentor::Collection:0x0000021512b52920 @lock=#<Thread::Mutex:0x0000021512b52880>, @subscriptions=#<Set: {}>, @instrumentors=#<Set: {#<VagrantCloud::Instrumentor::Logger:0x0000021512b52650>}>> method=:get expects="200, 201, 204" retry_interval=2 retries_remaining=1 remote_ip="99.86.91.104" timing="start_time: 2024-03-04 22:39:18 +0100, complete_time: 2024-03-04 22:39:19 +0100, duration: 0.6719976"
 INFO interface: error: Failed to create box decodeleco/debian12-docker
Failed to create box decodeleco/debian12-docker
 INFO interface: error: Vagrant Cloud request failed - Resource not found!
Vagrant Cloud request failed - Resource not found!
 INFO environment: Running hook: environment_unload
 INFO host: Autodetecting host type for [#<Vagrant::Environment: C:/Users/Utilisateur/packman/packer/golden/debian12_remote>]
DEBUG host: Trying: alt
DEBUG host: Trying: arch
DEBUG host: Trying: darwin
DEBUG host: Trying: freebsd
DEBUG host: Trying: gentoo
DEBUG host: Trying: redhat
DEBUG host: Trying: slackware
DEBUG host: Trying: suse
DEBUG host: Trying: void
DEBUG host: Trying: bsd
DEBUG host: Trying: linux
DEBUG host: Trying: null
DEBUG host: Trying: windows
 INFO host: Detected: windows!
 INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x0000021511a50640>
Jean-Baptiste-Lasselle commented 4 months ago

Ouh @Stromweld ? I play with so many different things I can't remember if I installed long ago ruby, or if it was vagrant installation which installed ruby, but here is something else thatmight be helpful:

image

Jean-Baptiste-Lasselle commented 4 months ago

even tried in powershell, same result: image

Stromweld commented 4 months ago

vagrant uses it's own embedded ruby. Try with just these flags: vagrant cloud publish --architecture amd64 --no-direct-upload decodeleco/debian12-docker 0.0.1 virtualbox package.box --force --release

Jean-Baptiste-Lasselle commented 4 months ago

vagrant cloud publish --architecture amd64 --no-direct-upload decodeleco/debian12-docker 0.0.1 virtualbox package.box --force --release

Thanks so much again, just tried, unfortunately, same result... :

$ vagrant cloud publish --architecture amd64 --no-direct-upload decodeleco/debian12-docker 0.0.1 virtualbox package.box --force --release
You are about to publish a box on Vagrant Cloud with the following options:
decodeleco/debian12-docker:   (v0.0.1) for provider 'virtualbox'
Automatic Release:     true
Box Architecture:      amd64
Failed to create box decodeleco/debian12-docker
Vagrant Cloud request failed - Resource not found!
Stromweld commented 4 months ago

Only other thing I can think of is if the package.box file live in the same folder you are running the command from. Otherwise I have no clue what that resource not found error is from.

Jean-Baptiste-Lasselle commented 4 months ago

Only other thing I can think of is if the package.box file live in the same folder you are running the command from. Otherwise I have no clue what that resource not found error is from.

Thank you very much @Stromweld , even if no command could realize the publish, exchanging with you made it clear I have to completely get rid of th vagrant cloud from my project:

$ ls -alh
total 1.5G
drwxr-xr-x 1 Utilisateur 197121    0 Mar  4 02:24 ./
drwxr-xr-x 1 Utilisateur 197121    0 Mar  5 00:34 ../
drwxr-xr-x 1 Utilisateur 197121    0 Mar  3 22:53 .vagrant/
-rw-r--r-- 1 Utilisateur 197121 3.2K Mar  3 22:52 Vagrantfile
-rw-r--r-- 1 Utilisateur 197121  142 Mar  4 02:25 box.sha512sum
-rw-r--r-- 1 Utilisateur 197121 1.5G Mar  3 23:11 package.box

$ vagrant cloud publish --architecture amd64 --no-direct-upload decodeleco/debian12-docker 0.0.1 virtualbox package.box --force --release
You are about to publish a box on Vagrant Cloud with the following options:
decodeleco/debian12-docker:   (v0.0.1) for provider 'virtualbox'
Automatic Release:     true
Box Architecture:      amd64
Failed to create box decodeleco/debian12-docker
Vagrant Cloud request failed - Resource not found!

And well no harm, it's all free, i'll just do without it, only need it to proove there is no way around.

So thank you very much @Stromweld for the multiple answers.

Stromweld commented 4 months ago

I believe when Hashi first started Ruby was the popular language of the time and most Hashi products were ruby based. Since then many of their products and services have moved to and been rewritten in GO. Vagrant is currently in the process but it'll take a while. https://www.hashicorp.com/blog/vagrant-2-3-introduces-go-runtime

Jean-Baptiste-Lasselle commented 4 months ago

I believe when Hashi first started Ruby was the popular language of the time and most Hashi products were ruby based. Since then many of their products and services have moved to and been rewritten in GO. Vagrant is currently in the process but it'll take a while. https://www.hashicorp.com/blog/vagrant-2-3-introduces-go-runtime

Thank you for the explanation, that's interesting. You're from the hashicorp team?

Stromweld commented 3 months ago

No I am not. Just been using some of their products for a few years now.

prof-ninjason commented 2 months ago

Did anyone try publishing to the newly migrated HCP? I'm stuck trying to publish my boxes using the vagrant cloud publish ... commands above...

Stromweld commented 2 months ago

I've been using this in Bento project https://github.com/chef/bento/blob/main/lib/bento/upload.rb#L49

Stromweld commented 2 months ago

oh sorry just realized your talking about HCP I haven't used that.

prof-ninjason commented 2 months ago

Did anyone try publishing to the newly migrated HCP? I'm stuck trying to publish my boxes using the vagrant cloud publish ... commands above...

Everything is here: https://developer.hashicorp.com/vagrant/vagrant-cloud/hcp-vagrant/post-migration-guide

prof-ninjason commented 2 months ago

Thank you everyone for your contributions! If there is anything new to add, we should open up a new issue.

chrisroberts commented 1 week ago

Hi all,

My sincere apologies for the long delay on this issue (along with the rest). A fix for this will be forthcoming in the next release (#13467).