Matthew Treinish b146c5e886 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
2018-02-27 13:03:16 +00:00

19 lines
394 B
Puppet

# == Class: mosquitto
#
# Full description of class mosquitto here.
#
# === Parameters
#
# [*sample_parameter*]
# Explanation of what this parameter affects and what it defaults to.
#
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,
}
}