#!/bin/sh
#

if which invoke-rc.d >/dev/null 2>&1; then
    invoke-rc.d arpsponge stop
else
    /etc/init.d/arpsponge stop
fi
