summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_mosquitto/tasks/ubuntu.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/setup_mosquitto/tasks/ubuntu.yml')
-rw-r--r--test/integration/targets/setup_mosquitto/tasks/ubuntu.yml24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/integration/targets/setup_mosquitto/tasks/ubuntu.yml b/test/integration/targets/setup_mosquitto/tasks/ubuntu.yml
deleted file mode 100644
index 5675cb8923..0000000000
--- a/test/integration/targets/setup_mosquitto/tasks/ubuntu.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-- 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