mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-02-02 22:48:48 +00:00
15 lines
353 B
YAML
15 lines
353 B
YAML
- hosts: datacenter
|
|
name: Install mqtt_srv
|
|
ignore_unreachable: false
|
|
become: True
|
|
tasks:
|
|
- name: Upload service config
|
|
ansible.builtin.copy:
|
|
src: services/mqtt_srv.service
|
|
dest: /etc/systemd/system/
|
|
|
|
- name: Upload service script
|
|
ansible.builtin.copy:
|
|
src: scripts/mqtt_srv.py
|
|
dest: /usr/bin/
|