about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Benson <abenson@gmail.com>2021-02-07 17:23:26 -0600
committerDuncan Overbruck <github@duncano.de>2021-02-12 23:21:02 +0100
commitc1687e7f431e8ec0bd23a9b616715f43055068ce (patch)
treea0ca4695e4f9943c53239b2198da6722f8d36649
parent9ee5b2fc05c58c08e51d0a8577af2b8e857a9894 (diff)
downloadrunit-void-c1687e7f431e8ec0bd23a9b616715f43055068ce.tar.gz
runit-void-c1687e7f431e8ec0bd23a9b616715f43055068ce.tar.xz
runit-void-c1687e7f431e8ec0bd23a9b616715f43055068ce.zip
core-services/03-filesystems.sh: respect auto_activation_volume_list
Closes #64.
-rw-r--r--core-services/03-filesystems.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/core-services/03-filesystems.sh b/core-services/03-filesystems.sh
index 5053e99..df40ff7 100644
--- a/core-services/03-filesystems.sh
+++ b/core-services/03-filesystems.sh
@@ -17,7 +17,7 @@ fi
 
 if [ -x /sbin/vgchange -o -x /bin/vgchange ]; then
     msg "Activating LVM devices..."
-    vgchange --sysinit -a y || emergency_shell
+    vgchange --sysinit -a ay || emergency_shell
 fi
 
 if [ -e /etc/crypttab ]; then
@@ -26,7 +26,7 @@ if [ -e /etc/crypttab ]; then
 
     if [ -x /sbin/vgchange -o -x /bin/vgchange ]; then
         msg "Activating LVM devices for dm-crypt..."
-        vgchange --sysinit -a y || emergency_shell
+        vgchange --sysinit -a ay || emergency_shell
     fi
 fi