diff options
Diffstat (limited to 'puppet/modules/unbound/manifests/package.pp')
m--------- | puppet/modules/unbound | 0 | ||||
-rw-r--r-- | puppet/modules/unbound/manifests/package.pp | 15 |
2 files changed, 15 insertions, 0 deletions
diff --git a/puppet/modules/unbound b/puppet/modules/unbound deleted file mode 160000 -Subproject a26b91dfea3189e6777629fa00d54f51dc41f4d 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, + } +} |