mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-10 00:44:49 +02:00
15 lines
213 B
Bash
15 lines
213 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="Hyper-V daemon: hv_kvp_daemon"
|
|
command=/usr/bin/hv_kvp_daemon
|
|
|
|
depend() {
|
|
use clock logger
|
|
need localmount net
|
|
}
|
|
|
|
start_pre() {
|
|
# Delete the existing store
|
|
rm -rf /var/lib/hyperv
|
|
}
|
|
|