diff options
author | Judd Vinet <judd@archlinux.org> | 2006-01-31 01:30:55 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2006-01-31 01:30:55 +0000 |
commit | affcb39fd921774f48b79fb9d48d68f3a917fd4f (patch) | |
tree | 5e1158582f6b048f378eec5e86e10d616bb0d603 | |
parent | bd6701616508c5bb21de9166e9b1daa6fe1de769 (diff) |
added --mknodes switch to the vgscan call (LVM)
-rw-r--r-- | rc.conf | 2 | ||||
-rwxr-xr-x | rc.sysinit | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -34,7 +34,7 @@ MOD_AUTOLOAD="yes" MOD_BLACKLIST=() # # Modules to load at boot-up (in this order) -# - prefix a module with a ! to disable it +# - prefix a module with a ! to blacklist it # MODULES=(!usbserial) # Scan for LVM volume groups at startup, required if you use LVM @@ -104,7 +104,7 @@ if [ "$USELVM" = "yes" -o "$USELVM" = "YES" ]; then elif [ -x /sbin/lvm -a -d /sys/block ]; then # Kernel 2.6.x, LVM2 groups stat_busy "Activating LVM2 groups" - /sbin/lvm vgscan --ignorelockingfailure + /sbin/lvm vgscan --ignorelockingfailure --mknodes /sbin/lvm vgchange --ignorelockingfailure -a y stat_done fi |