diff options
Diffstat (limited to 'puppet/modules/unbound/manifests/package.pp')
-rw-r--r-- | puppet/modules/unbound/manifests/package.pp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/puppet/modules/unbound/manifests/package.pp b/puppet/modules/unbound/manifests/package.pp new file mode 100644 index 00000000..b9b44f16 --- /dev/null +++ b/puppet/modules/unbound/manifests/package.pp @@ -0,0 +1,15 @@ +# == Class: unbound::package +# +# Manages the unbound package. +# +# === Examples +# +# include unbound::package +# +class unbound::package { + include unbound::params + + package { $unbound::params::package: + ensure => installed, + } +} |