Vagrant + Ansible config for provisioning a virtual machine.
The idea is to do an automated provision a physical machine or a VM using ansible and vagrant. The provisioned system can then optionally be used to generate a bootable ISO using a customized version of the sadly now quasi-defunct remastersys.
See the Setup document
A "module" is an ansible role that deploys a particular service or configuration
- Create a new ansible role directory in
playbooks/roles/
- Be sure to make any variables defined in your role's
defaults/
directory follow the formatMODULE_NAME__VAR_NAME
(note the two underscores in the middle) - Be sure to include a
MODULE_NAME__enabled
variable, set tofalse
.
- Test your module by creating a
localconfig.yml
(uselocalconfig.yml.sample
as a template), and addingMODULE_NAME__enabled: true
to the vars section.