aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorKurt J. Bosch <kjb-temp-2009@alpenjodel.de>2011-06-25 10:04:23 +0200
committerKurt J. Bosch <kjb-temp-2009@alpenjodel.de>2011-06-28 15:39:42 +0200
commitc4f66215ed3fc9dba67241feb404d271a689030c (patch)
tree9f3fed157745009c8cbb6a882b34209dafe99324 /functions
parentfac564337b20eb7b4b1a6163a8290c1058d116b1 (diff)
downloadinitscripts-c4f66215ed3fc9dba67241feb404d271a689030c.tar.xz
Move activate_vgs and crypt stat_busy to the top for consistency
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index 14b7a7b..861fcbe 100644
--- a/functions
+++ b/functions
@@ -326,8 +326,8 @@ udevd_modprobe() {
activate_vgs() {
[[ $USELVM = [yY][eE][sS] && -x $(type -P lvm) && -d /sys/block ]] || return
# Kernel 2.6.x, LVM2 groups
- /sbin/modprobe -q dm-mod 2>/dev/null
stat_busy "Activating LVM2 groups"
+ /sbin/modprobe -q dm-mod 2>/dev/null
/sbin/vgchange --sysinit -a y >/dev/null
(( $? == 0 )) && stat_done || stat_fail
}