diff --git a/unbound/manifests/init.pp b/unbound/manifests/init.pp new file mode 100644 index 0000000..3c5fd10 --- /dev/null +++ b/unbound/manifests/init.pp @@ -0,0 +1,16 @@ +# Installs Unbound DNS server + +class unbound { + + package { 'unbound': + ensure => installed, + } + + service { 'unbound': + ensure => running, + name => 'unbound', + enable => true, + } + +} +