mirror of https://github.com/ceph/ceph-ansible.git
23 lines
665 B
Plaintext
23 lines
665 B
Plaintext
|
# This file is managed by ansible, don't make changes here - they will be
|
||
|
# overwritten.
|
||
|
[Unit]
|
||
|
Description=Node Exporter
|
||
|
{% if container_binary == 'docker' %}
|
||
|
After=docker.service
|
||
|
{% endif %}
|
||
|
|
||
|
[Service]
|
||
|
EnvironmentFile=-/etc/environment
|
||
|
ExecStart=/usr/bin/{{ container_binary }} start --attach node-exporter
|
||
|
# Make sure the cfg80211 is loaded before running the container, the node
|
||
|
# exporter needs this module loaded to test for presence of wi-fi devices
|
||
|
ExecStartPre=/usr/sbin/modprobe cfg80211
|
||
|
ExecStop=-/usr/bin/{{ container_binary }} stop node-exporter
|
||
|
Restart=always
|
||
|
RestartSec=10s
|
||
|
TimeoutStartSec=120
|
||
|
TimeoutStopSec=15
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|