#! /bin/sh
#
# smbfs dispatcher script for NetworkManager
#
# Andreas Schneider <anschneider@suse.de>
#
case "$2" in
    up)
        /sbin/chkconfig --check smbfs && /etc/init.d/smbfs restart
        ;;
    down)
        /sbin/chkconfig --check smbfs && /etc/init.d/smbfs restart
        ;;
    *)
        exit 0
        ;;
esac
