#!/bin/sh
# Setup script for 4G bridge box

# Ensure wvdial is installed
if ! command -v wvdial >/dev/null 2>&1; then
  echo "Error: wvdial is not installed. Please install it first." >&2
  exit 1
fi

# TODO: add the rest of the setup steps

