]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/base_installation/manifests/cleanup.pp
Use external module for cronjobs
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / cleanup.pp
1 class base_installation::cleanup inherits base_installation {
2 # This class contains temporary classes used to cleanup old stuff
3 # after refactoring
4
5 cron { "puppet-pull-apply":
6 ensure => absent;
7 "puppet-apply":
8 ensure => absent;
9 "puppet-apply-reboot":
10 ensure => absent;
11 "pacman_keys":
12 ensure => absent;
13 "backup":
14 ensure => absent;
15 "py-cryptoportfolio-before":
16 ensure => absent;
17 "py-cryptoportfolio-after":
18 ensure => absent;
19 }
20 }