summaryrefslogtreecommitdiff
path: root/modules/profiles/manifests/phpfpm.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/profiles/manifests/phpfpm.pp')
-rw-r--r--modules/profiles/manifests/phpfpm.pp21
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/profiles/manifests/phpfpm.pp b/modules/profiles/manifests/phpfpm.pp
deleted file mode 100644
index 2aaf0df..0000000
--- a/modules/profiles/manifests/phpfpm.pp
+++ /dev/null
@@ -1,21 +0,0 @@
-class profiles::phpfpm (
- String $version = '7.4',
-) {
-
- # The packageg php-fpm also exists, which simply pulls in php7.4-fpm
-
- ensure_packages(["php${version}-fpm"])
-
- service { "php${version}-fpm":
- ensure => running,
- enable => true,
- }
-
- systemd::dropin_file { 'runtime-dir.conf':
- unit => 'php${version}-fpm.service',
- content => @(EOF)
- [Service]
- RuntimeDirectory=php
- | EOF
- }
-}