shell-base/load/05-filesystem
David Kebler 39d6cc755e rearrange some module locations
auto load btrfs modules if btrfs-progs and btrbk are installed
2024-02-12 12:53:25 -08:00

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