aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/development/virtual.pp
blob: 59f39842b206f52492761dd9f2e44a4148b413d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class nodo::utils::development::virtual inherits nodo::utils::virtual {
  package { [
    # For development with virtual machines and containers
    #'vagrant-libvirt',
    #'docker.io',
    #'packer',

    # For virtual machine creation and manipulation
    #'libguestfs-tools',
    #'cdebootstrap',
    #'grml-debootstrap',
    #'extlinux',
    'mbr',

    # Needed by https://github.com/hartwork/image-bootstrap
    'python-colorama',
  ]:
    ensure => present,
  }

  # Discontinued
  # https://lists.debian.org/msgid-search/aeb59515ee63c658e40927a401fd1b200747a168.camel@liw.fi
  package { [
    'vagrant',
    'vmdebootstrap',
  ]:
    ensure => absent,
  }
}