#!/bin/sh

#     DESCRIPTION
#
# set up controls 


#     REQUIRES
#


#     INFO
#

NAME="init3-control"

verbose()
{
    if [ -n "$GLOBAL_VERBOSE" ]; then
        echo "HOOK: $NAME: $@"
    fi
}

verbose "has started"

/usr/sbin/control cifsmount public ||:
/usr/sbin/control cifsumount public ||:

verbose "finished"