#!/bin/bash

PROGRAM=/bin/false
RUNLEVEL=3
NEEDS="+remote_fs +network +portmap nfs"

. /etc/init.d/smgl_init

start()
{
  required_executable /usr/sbin/rpc.statd
  
  echo   "Starting NFS file locking services, rpc.statd"
  loadproc /usr/sbin/rpc.statd
}

stop()
{
  echo "Stopping NFS file locking services"
  killproc /usr/sbin/rpc.statd
}
