ansible/test/integration/targets/setup_mosquitto/tasks/ubuntu.yml
Tim Rupp 48af9bdfec Adds tls_version argument to mqtt module (#58264)
Fixes: #22034

This patch adds support for a tls_version parameter that allows the
TLS version used to be configurable. By default the module will let
the underlying system libraries pick the maximum supported version.

This parameter is useful for servers that are unable to support
newer versions of TLS
2019-06-25 15:27:32 +02:00

24 lines
444 B
YAML

- name: Install https transport for apt
apt:
name: apt-transport-https
state: latest
force: yes
- name: Install Mosquitto Server
apt:
name: mosquitto
state: latest
register: result
until: result is success
delay: 3
retries: 10
- name: Ensure TLS config
copy:
src: mosquitto.conf
dest: /etc/mosquitto/mosquitto.conf
- name: Start Mosquitto service
service:
name: mosquitto
state: restarted