summaryrefslogtreecommitdiff
path: root/manifests/install.pp
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2013-07-09 11:27:53 -0400
committerAshley Penney <ashley.penney@puppetlabs.com>2013-07-09 12:22:11 -0400
commitd934a26cfaf7b2ffeb7276ed26049c186894a87b (patch)
tree6796bfec533665de9c6c9206edccc2ed3ede6d0b /manifests/install.pp
parent0d87be43451920f3bdea2037f79504d61047f405 (diff)
Rename parameters, remove outdated documentation, and adds inherit to
ntp on the child classes.
Diffstat (limited to 'manifests/install.pp')
-rw-r--r--manifests/install.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/install.pp b/manifests/install.pp
index b91538a..95d225b 100644
--- a/manifests/install.pp
+++ b/manifests/install.pp
@@ -1,10 +1,10 @@
class ntp::install(
- $ensure_package = $ntp::ensure_package,
+ $package_ensure = $ntp::package_ensure,
$package_name = $ntp::package_name,
-) {
+) inherits ntp {
package { 'ntp':
- ensure => $ensure_package,
+ ensure => $package_ensure,
name => $package_name,
}