aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/cleanup.pp
blob: 96aaa6b0a253a39bf07a6298e4f6a98e3e3b9ca5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class base_installation::cleanup inherits base_installation {
  # This class contains temporary classes used to cleanup old stuff
  # after refactoring

  cron { "puppet-pull-apply":
    ensure => absent;
  "puppet-apply":
    ensure => absent;
  "puppet-apply-reboot":
    ensure => absent;
  "pacman_keys":
    ensure => absent;
  "backup":
    ensure => absent;
  "py-cryptoportfolio-before":
    ensure => absent;
  "py-cryptoportfolio-after":
    ensure => absent;
  }
}