Installation of VirtualBox hypervisor.
On Fedora, this is a quick script to ensure you have everything installed on your system:
#!/bin/bash
sudo dnf -y update
sudo dnf -y install python-pip python-devel libffi-devel openssl-devel gcc redhat-rpm-config sshpass python2 python2-dnf libselinux-python
sudo pip install --upgrade pip
sudo pip install --upgrade paramiko
sudo pip install --upgrade ansible
sudo pip install --upgrade boto
- virtualbox_version - the version of VirtualBox to install. Default is 5.1.
- virtualbox_rpm_repository - location of the RPM repository to use. Default is http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo.
No dependencies.
- hosts: servers
roles:
- { role: kurron.virtualbox, virtualbox_version: 5.1 }
This project is licensed under the Apache License Version 2.0, January 2004.