AzuraCast/util/ansible/roles/influxdb/tasks/main.yml

14 lines
218 B
YAML

---
- name: Shut Down InfluxDB
service:
name: "influxdb"
state: stopped
ignore_errors: true
- name: Remove InfluxDB if Present
apt:
name: "influxdb"
state: absent
force: true
purge: true