COPY: remove unsupported storage drivers from warning message
authorRégis Hanol <regis@hanol.fr>
Wed, 15 May 2019 20:06:24 +0000 (22:06 +0200)
committerGitHub <noreply@github.com>
Wed, 15 May 2019 20:06:24 +0000 (22:06 +0200)
launcher

index ef73c5f5e767b7dc5d4dc9406ee24afcd4a4065a..6a09c0cfc6997c68c8ea39192fdda387b7fe7139 100755 (executable)
--- a/launcher
+++ b/launcher
@@ -155,7 +155,7 @@ check_prereqs() {
   # 2. running an approved storage driver?
   if ! $docker_path info 2> /dev/null | egrep -q '^Storage Driver: (aufs|zfs|overlay2)$'; then
     echo "Your Docker installation is not using a supported storage driver.  If we were to proceed you may have a broken install."
-    echo "aufs is the recommended storage driver, although zfs/btrfs/overlay and overlay2 may work as well."
+    echo "aufs is the recommended storage driver, although zfs and overlay2 may work as well."
     echo "Other storage drivers are known to be problematic."
     echo "You can tell what filesystem you are using by running \"docker info\" and looking at the 'Storage Driver' line."
     echo