summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2024-02-27 00:14:53 -0500
committerJesse Luehrs <doy@tozt.net>2024-02-27 00:14:53 -0500
commit1a795c8816d86c0ba75c7060a5ac744d9a98f621 (patch)
tree3d33ba8806eb011c4517ea173b7b6c3298efb4ae
parent510d48bfae2cbed0882f8aa437cf8585277a463a (diff)
downloadpuppet-tozt-1a795c8816d86c0ba75c7060a5ac744d9a98f621.tar.gz
puppet-tozt-1a795c8816d86c0ba75c7060a5ac744d9a98f621.zip
ensure => absent isn't a thing on services
-rw-r--r--modules/cron/manifests/init.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/cron/manifests/init.pp b/modules/cron/manifests/init.pp
index cbbcc91..818400e 100644
--- a/modules/cron/manifests/init.pp
+++ b/modules/cron/manifests/init.pp
@@ -22,6 +22,7 @@ class cron {
}
service { 'cronie':
- ensure => absent;
+ ensure => stopped,
+ enable => false;
}
}