mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
|
@ -0,0 +1,35 @@
|
|||
# Plain MQTT protocol
|
||||
listener 1883
|
||||
|
||||
# MQTT over TLS 1.1
|
||||
listener 8883
|
||||
tls_version tlsv1.1
|
||||
cafile /tls/ca_certificate.pem
|
||||
certfile /tls/server_certificate.pem
|
||||
keyfile /tls/server_key.pem
|
||||
|
||||
# MQTT over TLS 1.2
|
||||
listener 8884
|
||||
tls_version tlsv1.2
|
||||
cafile /tls/ca_certificate.pem
|
||||
certfile /tls/server_certificate.pem
|
||||
keyfile /tls/server_key.pem
|
||||
|
||||
# TODO(This does not appear to be supported on Ubuntu 18.04. Re-try on 20.04 or next LTS release)
|
||||
# MQTT over TLS 1.3
|
||||
#
|
||||
# listener 8885
|
||||
# tls_version tlsv1.3
|
||||
# cafile /tls/ca_certificate.pem
|
||||
# certfile /tls/server_certificate.pem
|
||||
# keyfile /tls/server_key.pem
|
||||
|
||||
log_dest syslog
|
||||
|
||||
log_type error
|
||||
log_type warning
|
||||
log_type notice
|
||||
log_type information
|
||||
log_type debug
|
||||
|
||||
connection_messages true
|
3
tests/integration/targets/setup_mosquitto/meta/main.yml
Normal file
3
tests/integration/targets/setup_mosquitto/meta/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
dependencies:
|
||||
- setup_tls
|
3
tests/integration/targets/setup_mosquitto/tasks/main.yml
Normal file
3
tests/integration/targets/setup_mosquitto/tasks/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- include: ubuntu.yml
|
||||
when: ansible_distribution == 'Ubuntu'
|
24
tests/integration/targets/setup_mosquitto/tasks/ubuntu.yml
Normal file
24
tests/integration/targets/setup_mosquitto/tasks/ubuntu.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
- 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
|
Loading…
Add table
Add a link
Reference in a new issue