blob: d72a3b8f31c57a7cede9aa19a939bbad353b6fae (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | 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',
    # Needed by https://github.com/hartwork/image-bootstrap
    'python-colorama',
  ]:
    ensure => present,
  }
}
 |