]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/commitdiff
Remove outdated list crontab for caldance
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Mon, 6 Apr 2020 12:19:41 +0000 (14:19 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Mon, 6 Apr 2020 12:21:35 +0000 (14:21 +0200)
modules/role/manifests/caldance.pp

index 343ea3461b03806ecd6e5ffaf6e86ef7f74f2056..df02b078e3f785ce595129411cf4abd6c690186e 100644 (file)
@@ -247,15 +247,7 @@ class role::caldance (
     enable => true
   }
 
-  $mailtos = join($cron_pip, ",")
   cron::job { "list_outdated_pip_packages":
-    ensure      => present,
-    user        => $user,
-    environment => ["HOME=${home}","MAILTO=${mailtos}"],
-    command     => "${home}/virtualenv/bin/pip list --outdated",
-    minute      => "0",
-    hour        => "10",
-    weekday     => "1",
-    require     => Exec["initialize_venv"],
+    ensure => absent
   }
 }