From b7259dc6d45d5bfcb1c45a852bc63addb22e4bc2 Mon Sep 17 00:00:00 2001 From: Sven Dowideit Date: Wed, 17 Sep 2014 17:03:13 +1000 Subject: [PATCH] It seems that we need these 2 options enabled for both aufs and devicemapper drivers when running on EXT4 - so test for them Docker-DCO-1.1-Signed-off-by: Sven Dowideit (github: SvenDowideit) --- contrib/check-config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/check-config.sh b/contrib/check-config.sh index cde194b54f..afaabbc956 100755 --- a/contrib/check-config.sh +++ b/contrib/check-config.sh @@ -153,7 +153,7 @@ check_flags "${flags[@]}" echo '- Storage Drivers:' { echo '- "'$(wrap_color 'aufs' blue)'":' - check_flags AUFS_FS | sed 's/^/ /' + check_flags AUFS_FS EXT4_FS_POSIX_ACL EXT4_FS_SECURITY | sed 's/^/ /' if ! is_set AUFS_FS && grep -q aufs /proc/filesystems; then echo " $(wrap_color '(note that some kernels include AUFS patches but not the AUFS_FS flag)' bold black)" fi @@ -162,7 +162,7 @@ echo '- Storage Drivers:' check_flags BTRFS_FS | sed 's/^/ /' echo '- "'$(wrap_color 'devicemapper' blue)'":' - check_flags BLK_DEV_DM DM_THIN_PROVISIONING EXT4_FS | sed 's/^/ /' + check_flags BLK_DEV_DM DM_THIN_PROVISIONING EXT4_FS EXT4_FS_POSIX_ACL EXT4_FS_SECURITY | sed 's/^/ /' } | sed 's/^/ /' echo