#!/bin/sh

# this script is executed before interface goes down
DEVICE=$1

IFDOWN_LOCAL=/usr/local/sbin/ifdown-pre-local
if [ -x "$IFDOWN_LOCAL" ]; then
    "$IFDOWN_LOCAL" "$DEVICE"
fi
:
