Uninstall puppet before running puppet jobs

Some versions of Puppet (2.7.x) do not like when an other
version of Puppet (3.x) is installed at the same time, resulting
in this kind of errors:

    cannot load such file -- windows/error

Uninstalling and purging the system version of Puppet
will prevent such conflicts from happening.

Change-Id: I70aa291f0966fac4d7f32df4573eb164c1d5fccd
This commit is contained in:
Mathieu Gagné 2014-08-21 10:30:09 -04:00
parent 157a8afdf4
commit 8cec0d3f26
2 changed files with 6 additions and 0 deletions

View File

@ -80,6 +80,11 @@
- shell: "sudo apt-get install -y nodejs npm"
- shell: "sudo ln /usr/bin/nodejs /usr/local/bin/node"
- builder:
name: uninstall-puppet
builders:
- shell: "sudo apt-get remove -y --purge puppet"
- builder:
name: puppet-lint
builders:

View File

@ -3,6 +3,7 @@
node: '{node}'
builders:
- uninstall-puppet
- revoke-sudo
- gerrit-git-prep
- shell: |