aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-06 14:19:41 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-06 14:21:35 +0200
commit441b866a095bd177a8faa541ea7ef605ba369fe9 (patch)
tree6f3de599abc53a8016df802bceb2fcd1ae10268a
parentaab2f0312f21125940b8fcfe8a2342eba3ac4169 (diff)
downloadPuppet-441b866a095bd177a8faa541ea7ef605ba369fe9.tar.gz
Puppet-441b866a095bd177a8faa541ea7ef605ba369fe9.tar.zst
Puppet-441b866a095bd177a8faa541ea7ef605ba369fe9.zip
Remove outdated list crontab for caldance
-rw-r--r--modules/role/manifests/caldance.pp10
1 files changed, 1 insertions, 9 deletions
diff --git a/modules/role/manifests/caldance.pp b/modules/role/manifests/caldance.pp
index 343ea34..df02b07 100644
--- a/modules/role/manifests/caldance.pp
+++ b/modules/role/manifests/caldance.pp
@@ -247,15 +247,7 @@ class role::caldance (
247 enable => true 247 enable => true
248 } 248 }
249 249
250 $mailtos = join($cron_pip, ",")
251 cron::job { "list_outdated_pip_packages": 250 cron::job { "list_outdated_pip_packages":
252 ensure => present, 251 ensure => absent
253 user => $user,
254 environment => ["HOME=${home}","MAILTO=${mailtos}"],
255 command => "${home}/virtualenv/bin/pip list --outdated",
256 minute => "0",
257 hour => "10",
258 weekday => "1",
259 require => Exec["initialize_venv"],
260 } 252 }
261} 253}