xoxys.mosquitto/tasks/install.yml

40 lines
1.0 KiB
YAML
Raw Normal View History

2017-12-16 21:33:26 +01:00
---
2017-12-18 12:16:09 +01:00
- name: Add mttq repository
2017-12-16 21:33:26 +01:00
yum_repository:
name: mttq
file: mttq
description: MTTQ Broker
baseurl: "http://download.opensuse.org/repositories/home:/oojah:/mqtt/CentOS_CentOS-{{ ansible_distribution_major_version }}/"
gpgkey: "http://download.opensuse.org/repositories/home:/oojah:/mqtt/CentOS_CentOS-{{ ansible_distribution_major_version }}/repodata/repomd.xml.key"
2017-12-16 21:33:26 +01:00
- name: Install mttq packages
yum:
name: "{{ item }}"
state: installed
2017-12-16 21:39:50 +01:00
with_items:
2017-12-16 21:33:26 +01:00
- mosquitto
- mosquitto-clients
- name: Create group '{{ mosquitto_group }}'
group:
name: '{{ mosquitto_group }}'
state: present
- name: Create user '{{ mosquitto_user }}'
user:
name: '{{ mosquitto_user }}'
group: '{{ mosquitto_group }}'
system: yes
createhome: no
shell: /sbin/nologin
2017-12-16 22:14:07 +01:00
2017-12-17 13:21:46 +01:00
- name: Copy default configuration
2017-12-16 22:49:18 +01:00
template:
2017-12-17 13:21:46 +01:00
src: "etc/mosquitto/conf.d/default.conf.j2"
dest: "{{ mosquitto_config_dir }}/default.conf"
2017-12-16 22:49:18 +01:00
owner: root
group: root
mode: 0644
2017-12-17 13:40:34 +01:00
notify:
- mosquitto_restart