summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/remove/jessie.pp
blob: e9497baf2760f93d4d76410732da7ff2935d7998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# remove possible leftovers after upgrading from wheezy to jessie
class site_config::remove::jessie {

  tidy {
    '/etc/apt/preferences.d/rsyslog_anon_depends':
      notify => Exec['apt_updated'];
  }

  apt::preferences_snippet {
    [ 'facter', 'obfsproxy', 'python-twisted', 'unbound' ]:
      ensure => absent;
  }

}