
In anticipation of puppet 4, start trying to deal with puppet 4 things that can be helpfully predicted by puppet lint plugins. Also fix errors caught by the puppet-lint-unquoted_string-check and puppet-lint-absolute_classname-check gems. Change-Id: I9d74d25d2f2c95ec52a6db3bf070903240e1b933
22 lines
332 B
Puppet
22 lines
332 B
Puppet
# Class: httpd::dev
|
|
#
|
|
# This class installs Apache development libraries
|
|
#
|
|
# Parameters:
|
|
#
|
|
# Actions:
|
|
# - Install Apache development libraries
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
class httpd::dev {
|
|
include ::httpd::params
|
|
|
|
package { 'apache_dev_package':
|
|
ensure => installed,
|
|
name => $httpd::params::apache_dev,
|
|
}
|
|
}
|