mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 14:44:36 +04:00
Also add patch to fix blkid header location as suggested in #17877 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
13 lines
280 B
Bash
13 lines
280 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2009 Stefan Monnier
|
|
START=15
|
|
|
|
start () {
|
|
/sbin/lvm vgscan --ignorelockingfailure --mknodes || :
|
|
/sbin/lvm vgchange -aly --ignorelockingfailure || return 2
|
|
}
|
|
|
|
stop () {
|
|
/sbin/lvm vgchange -aln --ignorelockingfailure || return 2
|
|
}
|