aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2020-07-29 10:19:34 -0300
committerSilvio Rhatto <rhatto@riseup.net>2020-07-29 10:19:34 -0300
commitb23da3095bc3a57207b23ccc017b5af893d1970d (patch)
tree44d623bc34af2235461fec9fc80db1381e6e0ab0
parentad4b577140bae735f58f2941c9c72623e812656b (diff)
downloadpuppet-php-b23da3095bc3a57207b23ccc017b5af893d1970d.tar.gz
puppet-php-b23da3095bc3a57207b23ccc017b5af893d1970d.tar.bz2
Fix: ensure all previous php-fpm services are stopped (3)
-rw-r--r--manifests/fpm.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/fpm.pp b/manifests/fpm.pp
index b94f504..1310b7f 100644
--- a/manifests/fpm.pp
+++ b/manifests/fpm.pp
@@ -23,8 +23,8 @@ define php::fpm(
}
$::php::params::version7_previous.each |$item| {
- service { "php${item}-fpm":
- ensure => stopped,
+ package { "php${item}-fpm":
+ ensure => absent,
}
}