Remove the verbose flag from tar for package extraction. Eliminate
unnecessary spam.
Risk(Low): Removing a flag
Visibility(Medium): Squelch some output being sent to autoserv.stdout
Signed-off-by: Ryan Kubiak <rkubiak@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@2233 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/common_lib/packages.py b/client/common_lib/packages.py
index a24e916..ddd9014 100644
--- a/client/common_lib/packages.py
+++ b/client/common_lib/packages.py
@@ -567,7 +567,7 @@
assumes that the package to be untarred is of the form
<name>.tar.bz2
'''
- self._run_command('tar xvjf %s -C %s' % (tarball_path, dest_dir))
+ self._run_command('tar xjf %s -C %s' % (tarball_path, dest_dir))
# Put the .checksum file in the install_dir to note
# where the package came from
pkg_checksum = self.compute_checksum(tarball_path)