# define the scalar to hold (?)
my $ypbind;

# if we're in debugging mode, print message saying where we're at
if( $BigSister::common::dl>3 )
{
   print "LOADING YPBIND MODULE!!!\n";
}

# check to see if module is already in memory; if it isn't, load it
unless( $ypbind = $memory{"ypbind_$args{frequency}"} )
{
    &uxmon::load_module( "ypbind" );
    &uxmon::checker(
        $memory{"ypbind_$args{frequency}"} = $ypbind = Monitor::ypbind->new()
    );
    $ypbind->sched_frequency( $args{"frequency"} );
}

# if we're in debugging mode, print message saying where we're at
if( $BigSister::common::dl>3 )
{
    print "YPBIND: Made it through Config, anyway ...\n";
}

1;
