summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xenter-baserock8
1 files changed, 8 insertions, 0 deletions
diff --git a/enter-baserock b/enter-baserock
index 4ce2b52..b4b73ff 100755
--- a/enter-baserock
+++ b/enter-baserock
@@ -39,6 +39,14 @@ fi
cd /
+if ! grep -q btrfs /proc/filesystems; then
+ echo "No btrfs support detected in kernel, attempting to load btrfs module"
+ if ! sudo -p "Password (to run 'modprobe -v btrfs'): " modprobe -v btrfs; then
+ echo "Loading module failed, looks like your kernel doesn't support Btrfs."
+ echo "Deploying systems to Btrfs disk images will not work correctly."
+ fi
+fi
+
if test "x$SSH_AUTH_SOCK" != "x"; then
echo "Forwarding SSH agent into chroot"
TDIR=$(mktemp --tmpdir=/tmp -d)