mirror of https://github.com/ceph/ceph-ansible.git
19 lines
498 B
Django/Jinja
19 lines
498 B
Django/Jinja
# {{ ansible_managed }}
|
|
[Unit]
|
|
Description=Ceph OSD
|
|
After=docker.service
|
|
|
|
[Service]
|
|
EnvironmentFile=-/etc/environment
|
|
ExecStartPre=-/usr/bin/docker stop ceph-osd-{{ ansible_hostname }}-%i
|
|
ExecStartPre=-/usr/bin/docker rm -f ceph-osd-{{ ansible_hostname }}-%i
|
|
ExecStart={{ ceph_osd_docker_run_script_path }}/ceph-osd-run.sh %i
|
|
ExecStop=-/usr/bin/docker stop ceph-osd-{{ ansible_hostname }}-%i
|
|
Restart=always
|
|
RestartSec=10s
|
|
TimeoutStartSec=120
|
|
TimeoutStopSec=15
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|