mirror of
https://github.com/ceph/ceph
synced 2024-12-16 08:26:25 +00:00
4865831b91
this change also fix the EnvironmentFile specified in rbdmap.service. without this change EnvironmentFile in rbdmap.service is always /etc/sysconfig/ceph even on debian derived distros. after this change, this variable is /etc/default/ceph in rbdmap.service shipped by the deb packages. Signed-off-by: Kefu Chai <kchai@redhat.com>
19 lines
451 B
SYSTEMD
19 lines
451 B
SYSTEMD
[Unit]
|
|
Description=Ceph FUSE client
|
|
After=network-online.target local-fs.target time-sync.target
|
|
Wants=network-online.target local-fs.target time-sync.target
|
|
Conflicts=umount.target
|
|
PartOf=ceph-fuse.target
|
|
|
|
[Service]
|
|
EnvironmentFile=-@SYSTEMD_ENV_FILE@
|
|
Environment=CLUSTER=ceph
|
|
ExecStart=/usr/bin/ceph-fuse -f --cluster ${CLUSTER} %I
|
|
TasksMax=infinity
|
|
Restart=on-failure
|
|
StartLimitInterval=30min
|
|
StartLimitBurst=3
|
|
|
|
[Install]
|
|
WantedBy=ceph-fuse.target
|