Use the mosquitto ppa for ubuntu packages

The ubuntu package is a couple releases out of date even in Xenial
and we're hitting some random crashes with the version we're
running. Hopefully a newer version will fix it. Switching to the PPA
will get us the same version slated for inclusion in Ubuntu 18.04
LTS (Bionic) until we have an opportunity to upgrade the server.

Change-Id: Ie4b6170db670e3284d6bd069a13d4a6468507c76
This commit is contained in:
Matthew Treinish 2016-09-26 15:57:15 -04:00 committed by Jeremy Stanley
parent ad313e76b7
commit b146c5e886
2 changed files with 5 additions and 1 deletions

View File

@ -9,6 +9,9 @@
#
class mosquitto (
) {
# TODO: can drop this PPA once the service is running on Ubuntu 18.04
apt::ppa { 'ppa:mosquitto-dev/mosquitto-ppa': }
package {'mosquitto':
ensure => present,
}

View File

@ -27,6 +27,7 @@
}
],
"dependencies": [
{ "name": "puppetlabs/stdlib", "version_requirement": ">= 4.0.0 <5.0.0" }
{ "name": "puppetlabs/stdlib", "version_requirement": ">= 4.0.0 <5.0.0" },
{ "name": "puppetlabs/apt", "version_requirement": ">= 2.3.0 <3.0.0" }
]
}