Signed-off-by: Jason Dillaman <dillaman@redhat.com>
ceph-mon.target \
ceph-mds.target \
ceph-radosgw.target \
+ ceph-rbd-mirror.target \
ceph-mds@.service \
ceph-mon@.service \
ceph-create-keys@.service \
ceph-osd@.service \
ceph-radosgw@.service \
+ ceph-rbd-mirror@.service \
ceph-disk@.service \
rbdmap.service
--- /dev/null
+[Unit]
+Description=ceph target allowing to start/stop all ceph-rbd-mirror@.service instances at once
+PartOf=ceph.target
+[Install]
+WantedBy=multi-user.target ceph.target
--- /dev/null
+[Unit]
+Description=Ceph rbd mirror daemon
+After=network-online.target local-fs.target
+Wants=network-online.target local-fs.target
+
+[Service]
+LimitNOFILE=1048576
+LimitNPROC=1048576
+EnvironmentFile=-/etc/sysconfig/ceph
+Environment=CLUSTER=ceph
+ExecStart=/usr/bin/rbd-mirror -f --cluster ${CLUSTER} --id %i --setuser ceph --setgroup ceph
+ExecReload=/bin/kill -HUP $MAINPID
+PrivateDevices=yes
+ProtectHome=true
+ProtectSystem=full
+PrivateTmp=true
+Restart=on-failure
+StartLimitInterval=30min
+StartLimitBurst=3
+
+[Install]
+WantedBy=ceph-rbd-mirror.target