Skip to content

Instantly share code, notes, and snippets.

@elyezer
Last active August 29, 2015 13:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elyezer/10410641 to your computer and use it in GitHub Desktop.
Save elyezer/10410641 to your computer and use it in GitHub Desktop.
Provision Fedora 20 to run vagrant boxes based on libvirt provider
# Install required packages
sudo yum install @virtualization
sudo systemctl start libvirtd
# Install vagrant
wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.5.2_x86_64.rpm
sudo yum install vagrant_1.5.2_x86_64.rpm
vagrant plugin install vagrant-libvirt
# Testing the installation with katello-deploy script
git clone https://github.com/Katello/katello-deploy.git
cd katello-deploy
vagrant up --provider=libvirt --no-parallel
# Define the vagrant default provider
# add the following line to your .bashrc
export VAGRANT_DEFAULT_PROVIDER=libvirt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment