blob: 8271e1b1a032c28e29d2253ad72e605a0d56d0cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class libvirtd {
class base {
# make sure to use a recent enough version
# dnsmasq-base -> for nat network
# netcat-openbsd -> for ssh remote access
# iptables -> for dhcp, message error was quite puzzling
package { ["libvirtd","dnsmasq-base","netcat-openbsd","iptables"]:
}
service { libvirtd:
ensure => running,
path => "/etc/init.d/libvirtd",
}
}
class kvm inherits base {
# pull cyrus-sasl, should be checked
package { "qemu":
}
}
}
|