ceph/qa/workunits/kernel_untar_build.sh
Sage Weil f7fb547549 qa: make kernel_untar_build.sh output more helpful
- rm -rv
- list remaining files on failure

to help debug #1230

Signed-off-by: Sage Weil <sage@newdream.net>
2011-06-28 16:07:39 -07:00

20 lines
302 B
Bash
Executable File

#!/bin/bash
set -e
wget -q http://ceph.newdream.net/qa/linux-2.6.33.tar.bz2
mkdir t
cd t
tar jxvf ../linux*
cd linux*
make defconfig
make -j`grep -c processor /proc/cpuinfo`
cd ..
if ! rm -rv linux* ; then
echo "uh oh rm -r failed, it left behind:"
find .
exit 1
fi
cd ..
rm -rv t linux*