blob: fb3c3d51bd050fab617bfb12ccd7c94b2beaf3eb (
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
'python3-colorama',
]:
ensure => present,
}
# Discontinued
# https://lists.debian.org/msgid-search/aeb59515ee63c658e40927a401fd1b200747a168.camel@liw.fi
package { [
'vagrant',
'vmdebootstrap',
]:
ensure => absent,
}
}
|