1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-08 03:54:20 +01:00

run the export commands

This commit is contained in:
Klas Lindfors 2013-11-11 10:40:37 +01:00
parent 2654ff5466
commit b4eb726c4e

View File

@ -74,3 +74,19 @@ if [ $? != 0 ]; then
else else
echo "Success 3" echo "Success 3"
fi fi
num=`./ykval-export | wc -l`
if [ $num != 1 ]; then
echo "failed exporting"
exit 1
else
echo "Success export"
fi
num=`./ykval-export-clients | wc -l`
if [ $num != 1 ]; then
echo "failed exporting clients"
exit 1
else
echo "Success export-clients"
fi