summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apt/manifests/preferences/augeas.pp
blob: 257d64c45d351dad95cec0067fe7b2bb87fc4e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# install augeas packages from backports
class site_apt::preferences::augeas {

  # i could not get
  # site_config::remove_files::augeas::['rm_old_leap_mx_log_destination']
  # to remove a line matching a regex with the wheezy version of augeas-lenses
  # (0.10.0-1). Therefore we install it from backports

  apt::preferences_snippet { 'augeas':
    package  => 'augeas-lenses augeas-tools libaugeas0',
    release  => "${::lsbdistcodename}-backports",
    priority => 999;
  }

}