From 1a795c8816d86c0ba75c7060a5ac744d9a98f621 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 27 Feb 2024 00:14:53 -0500 Subject: ensure => absent isn't a thing on services --- modules/cron/manifests/init.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/cron') 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; } } -- cgit v1.2.3-54-g00ecf