From 1c886a70df9820e58caa14789d9ad37c366026d9 Mon Sep 17 00:00:00 2001 From: Andrei Gherzan Date: Thu, 25 Aug 2016 13:20:15 +0100 Subject: [PATCH] check-config.sh: Add check for CONFIG_BTRFS_FS_POSIX_ACL docker is trying to set system.posix_acl_access but using BTRFS this fails if CONFIG_BTRFS_FS_POSIX_ACL is not activated. Signed-off-by: Andrei Gherzan --- contrib/check-config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/check-config.sh b/contrib/check-config.sh index 5fbfa2eb88..a9edcedbe9 100755 --- a/contrib/check-config.sh +++ b/contrib/check-config.sh @@ -268,6 +268,7 @@ echo '- Storage Drivers:' echo '- "'$(wrap_color 'btrfs' blue)'":' check_flags BTRFS_FS | sed 's/^/ /' + check_flags BTRFS_FS_POSIX_ACL | sed 's/^/ /' echo '- "'$(wrap_color 'devicemapper' blue)'":' check_flags BLK_DEV_DM DM_THIN_PROVISIONING | sed 's/^/ /'