
Why this needed to be a linter rule I do not know. Change-Id: I27ba74c6060c9d2ad09b52bc38090ff9c1f83721
23 lines
322 B
Puppet
23 lines
322 B
Puppet
# Class: httpd::php
|
|
#
|
|
# This class installs PHP for Apache
|
|
#
|
|
# Parameters:
|
|
# - $php_package
|
|
#
|
|
# Actions:
|
|
# - Install Apache PHP package
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
class httpd::php {
|
|
include httpd::params
|
|
|
|
package { 'apache_php_package':
|
|
ensure => present,
|
|
name => $httpd::params::php_package,
|
|
}
|
|
}
|