ceph-ansible/roles/ceph-node-exporter/tasks/setup_container.yml

12 lines
257 B
YAML

---
- name: Include_tasks systemd.yml
ansible.builtin.include_tasks: systemd.yml
- name: Start the node_exporter service
ansible.builtin.systemd:
name: node_exporter
state: started
enabled: true
daemon_reload: true
failed_when: false