aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/cleanup.pp
blob: 1b4a9fc5a842fc666bcf512c39ac8e111a36e3a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
  }

  file { "/home/cryptoportfolio/go/src/immae.eu":
    ensure => absent,
    force  => true,
  }
}