Procházet zdrojové kódy

btrfs-progs: Fix init script

the init script calls the old btrfsctl util, which is not included in
btrfs-progs anymore. Update the init script to call "btrfs device scan"
which assembles multi device btrfs filesystems.

Signed-off-by: Stefan Hellermann <stefan@the2masters.de>
Stefan Hellermann před 10 roky
rodič
revize
02f732fb5d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      utils/btrfs-progs/files/btrfs-scan.init

+ 1
- 1
utils/btrfs-progs/files/btrfs-scan.init Zobrazit soubor

@@ -4,6 +4,6 @@
4 4
 START=19
5 5
 
6 6
 start() {
7
-	grep -q btrfs /proc/modules && /usr/bin/btrfsctl -a
7
+	grep -q btrfs /proc/modules && /usr/bin/btrfs device scan
8 8
 }
9 9