blob: 7b1813d05fadefa3967789a8760ef23bcd64be77 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | class nodo::utils::development::virtual inherits nodo::utils::virtual {
  package { [
    # For development with virtual machines and containers
    'vagrant',
    #'docker.io',
    #'packer',
    # For virtual machine creation and manipulation
    #'libguestfs-tools',
    'vmdebootstrap',
    'mbr',
  ]:
    ensure => present,
  }
}
 |