mirror of
https://github.com/ceph/ceph
synced 2024-12-17 17:05:42 +00:00
e6cd9570ba
The current systemd unit file misses 'PartOf=ceph-rbd-mirror.target', which results in the unit not starting after reboot. If you have ceph-rbd-mirror@rbd-mirror.ceph-rbd-mirror0, it won't start after reboot even if enabled. Adding 'PartOf=ceph-rbd-mirror.target' will enable ceph-rbd-mirror.target when ceph-rbd-mirror@rbd-mirror.ceph-rbd-mirror0 gets enabled. Signed-off-by: Sébastien Han <seb@redhat.com>
25 lines
594 B
Desktop File
25 lines
594 B
Desktop File
[Unit]
|
|
Description=Ceph rbd mirror daemon
|
|
After=network-online.target local-fs.target
|
|
Wants=network-online.target local-fs.target
|
|
PartOf=ceph-rbd-mirror.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
|
|
TasksMax=infinity
|
|
|
|
[Install]
|
|
WantedBy=ceph-rbd-mirror.target
|