mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-13 07:14:53 +00:00

having our ceph.service pulled in by ceph.target does not work anymore, because "systemctl start ceph.target" hangs forever on ceph-common upgrades. multi-user.target seems to work as well, and we are ordered after pve-cluster anyway. only replace the old ceph.service if it is an exact match. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
12 lines
220 B
Desktop File
12 lines
220 B
Desktop File
[Unit]
|
|
Description=PVE activate Ceph OSD disks
|
|
After=pve-cluster.service
|
|
Requires=pve-cluster.service
|
|
|
|
[Service]
|
|
ExecStart=/usr/sbin/ceph-disk --log-stdout activate-all
|
|
Type=oneshot
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|