#!/bin/bash

IFFILE=/tmp/ppp0.alive

export DEBIAN_FRONTEND=noninteractive
if [ -f "$IFFILE" ]; then
  rm "$IFFILE"
fi

exit 0

