Date: Tue, 1 Apr 2014 14:55:29 +0000 (UTC) From: Julio Merino <jmmv@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r264005 - user/jmmv/autotest/node Message-ID: <201404011455.s31EtTmN027974@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jmmv Date: Tue Apr 1 14:55:29 2014 New Revision: 264005 URL: http://svnweb.freebsd.org/changeset/base/264005 Log: Fix auto-detection of configurations. Expand the list of configuration files at the right time so that the filtering out of host.conf works as intended. Should fix r263868. Modified: user/jmmv/autotest/node/loop.sh Modified: user/jmmv/autotest/node/loop.sh ============================================================================== --- user/jmmv/autotest/node/loop.sh Tue Apr 1 14:55:20 2014 (r264004) +++ user/jmmv/autotest/node/loop.sh Tue Apr 1 14:55:29 2014 (r264005) @@ -78,7 +78,7 @@ the_loop() { shtk_cli_info "Iteration started on $(date)" if shtk_bool_check "${autoconfigs}"; then - set -- $(echo "${AUTOTEST_ETCDIR}/*.conf" | fmt -n 1 \ + set -- $(echo "${AUTOTEST_ETCDIR}"/*.conf | fmt -n 1 \ | grep -v host.conf) shtk_cli_info "Discovered config files: ${*}" fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404011455.s31EtTmN027974>