#!/bin/sh
# Sets wwan0 and route (replaces udhcpc)

NEW_CONN_FLAG="/tmp/new_connection"
FAIL_CNT_FILE="/tmp/fail.cnt"

# got a connection, so clear fail count
rm ${FAIL_CNT_FILE}
touch ${NEW_CONN_FLAG}
exit 0
