Added Unbound module

This commit is contained in:
Ville-Pekka 2017-02-24 15:15:26 +02:00
parent e5b37b9de5
commit 3b5aac8b0a

16
unbound/manifests/init.pp Normal file
View file

@ -0,0 +1,16 @@
# Installs Unbound DNS server
class unbound {
package { 'unbound':
ensure => installed,
}
service { 'unbound':
ensure => running,
name => 'unbound',
enable => true,
}
}