aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 3c699fc..4714e44 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -19,8 +19,18 @@
class php(
$series = '5',
$hardened = true,
+ $apc = absent,
+ $fpm = absent,
){
class { "php::series${series}":
hardened => $hardened,
}
+
+ package { [ 'php-apcu', 'php-apcu-bc' ]:
+ ensure => $apc,
+ }
+
+ class php::fpm {
+ ensure => $fpm,
+ }
}