diff mbox

[xfstests-bld] util/get-config: stop sourcing deprecated config files

Message ID 20180405212010.132258-1-ebiggers@google.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eric Biggers April 5, 2018, 9:20 p.m. UTC
Stop sourcing configs from the deprecated locations $KVM_CONFIG or
kvm-xfstests/config.custom, in preference to the locations in
~/.config/.  kvm-xfstests and gce-xfstests have been warning when
sourcing from the deprecated locations for almost a year now, so it's
unlikely that anyone is using them anymore.

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 kvm-xfstests/util/get-config | 15 ---------------
 1 file changed, 15 deletions(-)

Comments

Theodore Ts'o April 6, 2018, 1:26 p.m. UTC | #1
On Thu, Apr 05, 2018 at 02:20:10PM -0700, Eric Biggers wrote:
> Stop sourcing configs from the deprecated locations $KVM_CONFIG or
> kvm-xfstests/config.custom, in preference to the locations in
> ~/.config/.  kvm-xfstests and gce-xfstests have been warning when
> sourcing from the deprecated locations for almost a year now, so it's
> unlikely that anyone is using them anymore.
> 
> Signed-off-by: Eric Biggers <ebiggers@google.com>

Applied, thanks.

						- Ted
--
To unsubscribe from this list: send the line "unsubscribe fstests" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/kvm-xfstests/util/get-config b/kvm-xfstests/util/get-config
index 4baf494..894bf3b 100644
--- a/kvm-xfstests/util/get-config
+++ b/kvm-xfstests/util/get-config
@@ -48,21 +48,6 @@  then
 	rm "$tmpfile"
 	unset tmpfile
 fi
-
 if test -n "$GCE_ACCOUNT" -a -f "$DIR/config-$GCE_ACCOUNT" ; then
     . "$DIR/config-$GCE_ACCOUNT"
-elif test -f $DIR/config.custom ; then
-# Else, source kvm-xfstests/config.custom if present (deprecated)
-    echo -e 1>&2 "Warning: use of kvm-xfstests/config.custom is deprecated." \
-	    "Move your settings\n         into ~/.config/kvm-xfstests," \
-	    "~/.config/gce-xfstests,\n         ~/.config/android-xfstests," \
-	    "and/or ~/.config/xfstests-common"
-    . $DIR/config.custom
-fi
-
-# Source $KVM_CONFIG if present (deprecated)
-if test -n "$KVM_CONFIG" -a -f "$KVM_CONFIG"; then
-    echo -e 1>&2 "Warning: use of \$KVM_CONFIG is deprecated." \
-	    "Move your settings into\n         ~/.config/kvm-xfstests"
-    . $KVM_CONFIG
 fi