diff --git a/manifests/apt_config.pp b/manifests/apt_config.pp index c3cbb89..852a21b 100644 --- a/manifests/apt_config.pp +++ b/manifests/apt_config.pp @@ -1,20 +1,20 @@ # APT Configuration for gunicorn class gunicorn::apt_config { if $::lsbdistcodename == 'jessie' { $pinned_packages = [ 'gunicorn', 'gunicorn-examples', 'gunicorn3', - 'python', - 'python3', + 'python-gunicorn', + 'python3-gunicorn', ] ::apt::pin {'gunicorn': explanation => 'Pin gunicorn and dependencies to backports', codename => 'jessie-backports', packages => $pinned_packages, priority => 990, } } }