mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-07 20:14:21 +02:00
11 lines
196 B
Bash
11 lines
196 B
Bash
#!/sbin/openrc-run
|
|
|
|
name=lvmlockd
|
|
command="/sbin/$name"
|
|
command_args_foreground="--foreground"
|
|
command_background=true
|
|
pidfile="/run/$name.pid"
|
|
|
|
start_pre() {
|
|
checkpath --directory /run/lvm
|
|
}
|