mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
675b94a11b
Without this patch, pvscan service file contains StartLimitInterval at the Unit section, which trigger an error: Unknown lvalue 'StartLimitInterval' in section 'Unit' Moving StartLimitInterval to Service section fixes the issue. Signed-off-by: Marcos Paulo de Souza <mpdesouza@suse.de>
17 lines
411 B
SYSTEMD
17 lines
411 B
SYSTEMD
[Unit]
|
|
Description=LVM2 PV scan on device %i
|
|
Documentation=man:pvscan(8)
|
|
DefaultDependencies=no
|
|
BindsTo=dev-block-%i.device
|
|
Requires=lvm2-lvmetad.socket
|
|
After=lvm2-lvmetad.socket lvm2-lvmetad.service
|
|
Before=shutdown.target
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart=@SBINDIR@/lvm pvscan --cache --activate ay %i
|
|
ExecStop=@SBINDIR@/lvm pvscan --cache %i
|
|
StartLimitInterval=0
|