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