#!/bin/sh

#DEBHELPER#

if [ -x "/etc/init.d/laptop-netconf" ]; then
        if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
                invoke-rc.d laptop-netconf stop
        else
                /etc/init.d/laptop-netconf stop
        fi
fi
