
While writing acceptance tests for puppet-httpd we noticed that the manifest of httpd::dev was not working on Ubuntu Trusty. That is because httpd::dev was trying to install multiple package using the wrong syntax. Also, the one of the modules for Ubuntu was wrong and we updated to keep applying. Co-Authored-By: Bruno Tavares <btavare@thoughtworks.com> Co-Authored-By: Danilo Ramalho <dramalho@thoughtworks.com> Change-Id: Ibe1e107417b4670902f74b8c2fedc0d9d927ce9b
21 lines
296 B
Puppet
21 lines
296 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 { $httpd::params::apache_dev:
|
|
ensure => installed,
|
|
}
|
|
}
|