summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apt/manifests/preferences/twisted.pp
blob: a3fa095015b7c43d9cd57f67514604ebc0d91e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
# Pin twisted to jessie-backports in order to
# use 16.2.0 for i.e. soledad
class site_apt::preferences::twisted {

  apt::preferences_snippet { 'twisted':
    package  => 'python-twisted*',
    release  => "${::lsbdistcodename}-backports",
    priority => 999;
  }

}