about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-x115
1 files changed, 15 insertions, 0 deletions
diff --git a/1 b/1
index 45405ee..ec47773 100755
--- a/1
+++ b/1
@@ -92,6 +92,21 @@ elif [ -r /etc/hostname ]; then
 fi
 msg "Setting up hostname to '${HOSTNAME}'...\n"
 
+if [ -x /usr/sbin/dmraid ]; then
+    msg "Activating dmraid devices...\n"
+    /usr/sbin/dmraid -i -ay
+fi
+
+if [ -x /usr/bin/btrfs ]; then
+    msg "Activating btrfs devices...\n"
+    btrfs device scan
+fi
+
+if [ -x /usr/sbin/vgchange ]; then
+    msg "Activating LVM devices...\n"
+    vgchange --sysinit -a y
+fi
+
 msg "Checking filesystems:\n"
 fsck -A -T -a -t noopts=_netdev
 rval=$?