285a4df5d6
--HG-- extra : convert_revision : 16248a8cc2d1a31eb220ccdfa1abc1695ab577e5
15 lines
183 B
Text
15 lines
183 B
Text
#!/sbin/runscript
|
|
#
|
|
# OpenRC service for LVM.
|
|
|
|
depend()
|
|
{
|
|
after *
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "Deactivating LVM volumes"
|
|
lvm vgchange --ignorelockingfailure -an 2>&1 >/dev/null
|
|
eend $?
|
|
}
|