core/lvm2/lvm2_hook
2014-09-27 04:12:59 +00:00

13 lines
155 B
Bash

#!/usr/bin/ash
run_earlyhook() {
mkdir /run/lvm
lvmetad
}
run_cleanuphook() {
kill $(cat /run/lvmetad.pid)
}
# vim: set ft=sh ts=4 sw=4 et: