summaryrefslogtreecommitdiff
path: root/manifests/install.pp
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2013-07-30 12:58:59 -0400
committerAshley Penney <ashley.penney@puppetlabs.com>2013-07-30 12:58:59 -0400
commit7fbbbd0796caf0145b46887b55a7e2fd17a3ebb0 (patch)
tree74d02b102d856018620be812fc86fc557a374400 /manifests/install.pp
parent768e4dc230f7d81d4ae836396bcd458d7a1bff7a (diff)
Convert some classes to not be parameterized.
We're following (where possible) the pattern of having parameters only exist on interface classes. As ntp::config and ntp::install are just internal, private, classes, these don't make sense to allow changes to.
Diffstat (limited to 'manifests/install.pp')
-rw-r--r--manifests/install.pp9
1 files changed, 5 insertions, 4 deletions
diff --git a/manifests/install.pp b/manifests/install.pp
index 94cb080..e175964 100644
--- a/manifests/install.pp
+++ b/manifests/install.pp
@@ -1,7 +1,8 @@
-class ntp::install (
- $package_ensure = $ntp::package_ensure,
- $package_name = $ntp::package_name,
-) inherits ntp {
+#
+class ntp::install {
+
+ $package_ensure = $ntp::package_ensure
+ $package_name = $ntp::package_name
package { 'ntp':
ensure => $package_ensure,