Skip to content

Commit

Permalink
Use up-to-date name and version for the Docker Python API package.
Browse files Browse the repository at this point in the history
docker-py appears to be an abandoned copy of the docker pypi package
stuck at 1.10.6. An issue with the script on Xenial prompted us to
update the dependency.
  • Loading branch information
nuclearsandwich committed Sep 8, 2017
1 parent d9481bc commit e31d523
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/profile/manifests/jenkins/agent.pp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
ensure => 'installed',
}

# required by subprocess reaper script
# required by subprocess reaper and docker cleanup scripts
package { 'python3-psutil':
ensure => 'installed',
}
Expand Down Expand Up @@ -100,9 +100,9 @@
include docker

# required by cleanup_docker script
python::pip { 'docker-py':
pkgname => 'docker-py',
#ensure => present, # defaults to present
python::pip { 'docker':
ensure => '2.5.0',
pkgname => 'docker',
}

# script to clean up docker images from oldest
Expand Down

0 comments on commit e31d523

Please sign in to comment.