aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp12
1 files changed, 7 insertions, 5 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index b60d3df..daed35f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -17,13 +17,15 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
class php(
- $series = '5',
- $hardened = true,
- $apc = absent,
- $fpm = absent,
+ $series = '5',
+ $hardened = true,
+ $apc = absent,
+ $fpm = absent,
+ $manage_mod_php = false,
) {
class { "php::series${series}":
- hardened => $hardened,
+ hardened => $hardened,
+ manage_mod_php => $manage_mod_php,
}
class { 'php::apc':