Use latest version of gerritbot

In local testing doing a pip upgrade of gerritbot did work. So remove
setting where it would never upgrade.

Snippet from doing an upgrade inside a virtualvenv:
$ pip install -U gerritbot
<snip>
Installing collected packages: pbr, paho-mqtt, gerritbot
  Found existing installation: pbr 0.5.23
    Uninstalling pbr-0.5.23:
      Successfully uninstalled pbr-0.5.23
  Found existing installation: gerritbot 0.2.0
    Uninstalling gerritbot-0.2.0:
      Successfully uninstalled gerritbot-0.2.0
Successfully installed gerritbot-0.3.0 paho-mqtt-1.2 pbr-0.11.1

Change-Id: I155e40c380bcf4904ffc4c294b8261e3e0e1d74f
This commit is contained in:
John L. Villalovos 2017-01-25 15:33:03 -08:00
parent fb832b094b
commit c93b295cca
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class gerritbot(
include ::pip
package { 'gerritbot':
ensure => present, # Pip upgrade is not working
ensure => latest,
provider => openstack_pip,
require => Class['pip'],
}