Last active
August 29, 2015 13:58
-
-
Save elyezer/10410641 to your computer and use it in GitHub Desktop.
Provision Fedora 20 to run vagrant boxes based on libvirt provider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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