#!/bin/sh

# This script disables wanmanager for 2 minutes. Intended to let the system stabilize
#  after a reboot.  We hope 2 minutes is long enough and not too long.

touch /tmp/wanmanager
sleep 2m
rm -f /tmp/wanmanager

