From cf6b7ffd25991c88b3900670b72e5fbd6a488dbf Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Tue, 22 Jan 2019 14:13:30 +0200 Subject: [PATCH] Fix vagrant libvirt instructions --- docs/vagrant.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/vagrant.md b/docs/vagrant.md index 3bedc428e..10abeacbf 100644 --- a/docs/vagrant.md +++ b/docs/vagrant.md @@ -47,9 +47,9 @@ sudo usermod -a -G libvirt $USER # Reboot -vagrant box fetch bento/ubuntu-16.04 +vagrant box add bento/ubuntu-16.04 --provider=virtualbox vagrant mutate bento/ubuntu-16.04 libvirt -vagrant up bento/ubuntu-16.04 --provider=libvirt +vagrant up ubuntu-xenial --provider=libvirt ``` #### Other Distributions @@ -65,7 +65,7 @@ sudo usermod -a -G libvirt $USER vagrant plugin install vagrant-mutate vagrant box fetch bento/ubuntu-16.04 vagrant mutate bento/ubuntu-16.04 libvirt -vagrant up bento/ubuntu-16.04 --provider=libvirt +vagrant up ubuntu-xenial --provider=libvirt ``` ## Starting LibreTime Vagrant @@ -95,7 +95,7 @@ offers the option to choose a different operation system according to you needs. | OS | Command | Comment | | ------ | ------------------- | ------- | -| Debian 9.2 | `vagrant up debian-stretch` | Install on current Debian Stretch. | +| Debian 9.6 | `vagrant up debian-stretch` | Install on current Debian Stretch. | | Debian 8.7 | `vagrant up debian-jessie` | Install on Debian Jessie. | | Ubuntu 18.04 | `vagrant up ubuntu-bionic` | Experimental install on current Ubuntu Bionic Beaver. | | Ubuntu 16.04 | `vagrant up ubuntu-xenial` | Install on Ubuntu Xenial Xerus. |