aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/cleanup.pp
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-03-26 00:41:55 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-03-26 01:19:39 +0200
commit2859008efe8f0a75344c7ba1c9c6e4d589f92da3 (patch)
treebb48fa503b6b1e01f9216d9e1729e1ba26adacf5 /modules/base_installation/manifests/cleanup.pp
parent7f1244c8c2a418ed9e978f098c73f8697e2cd306 (diff)
downloadPuppet-2859008efe8f0a75344c7ba1c9c6e4d589f92da3.tar.gz
Puppet-2859008efe8f0a75344c7ba1c9c6e4d589f92da3.tar.zst
Puppet-2859008efe8f0a75344c7ba1c9c6e4d589f92da3.zip
Use external module for cronjobs
Diffstat (limited to 'modules/base_installation/manifests/cleanup.pp')
-rw-r--r--modules/base_installation/manifests/cleanup.pp20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/base_installation/manifests/cleanup.pp b/modules/base_installation/manifests/cleanup.pp
new file mode 100644
index 0000000..96aaa6b
--- /dev/null
+++ b/modules/base_installation/manifests/cleanup.pp
@@ -0,0 +1,20 @@
1class 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}