Mémo pour changer le nom ‘default’ lors du démarrage d’une box.
Symptôme :
1 2 3 4 5 6 7 8 9 |
$ vagrant status Current machine states: default running (virtualbox) The VM is running. To stop this VM, you can run `vagrant halt` to shut it down forcefully, or you can run `vagrant suspend` to simply suspend the virtual machine. In either case, to restart it again, simply run `vagrant up`. |
Fichier Vagrantfile :
1 2 3 4 5 6 |
Vagrant.configure("2") do |config| ... config.vm.box = "debian/jessie64" config.vm.define "debian-jessie64" ... end |