added error handling for failed login

This commit is contained in:
michael1
2018-01-09 23:58:52 +01:00
committed by GitHub
parent c02b13d40d
commit 7be3ef83e6

View File

@@ -623,11 +623,20 @@ check_status
if [ $? -eq 0 ] ; then
echo "cookie expired, logging in again ..."
log_in
check_status
if [ $? -eq 0 ] ; then
echo "log in failed, aborting"
exit 1
fi
fi
if [ ! -f ${DEVLIST} ] ; then
echo "device list do not exist. downloading ..."
get_devlist
if [ ! -f ${DEVLIST} ] ; then
echo "failed to download device list, aborting"
exit 1
fi
fi
if [ -n "$COMMAND" -o -n "$QUEUE" ] ; then