39d6cc755e
auto load btrfs modules if btrfs-progs and btrbk are installed
9 lines
131 B
Bash
9 lines
131 B
Bash
#!/bin/bash
|
|
if which btrfs &> /dev/null; then
|
|
module_load btrfs
|
|
if which btrbk &> /dev/null; then module_load btrbk; fi
|
|
fi
|
|
|
|
|
|
|
|
|