PROCEDURE activate_ypbind, activate_yp_binding, actypbind, actyb (
  default_domain, dd: application = $null
  server_ip_address, sia: application = $null
  debug, d: boolean = FALSE
  epilog, e: file = nfd$epilog, $system.tcp_ip.onc.epilog
  status)

"   This procedure is on the OS source_library because it resides
"   on osf$builtin_library.  The ONC products are on the NFS source
"   library.  To minimize the number of times a mod is required
"   to both source libraries the activate procs call start procs
"   passing all the parameters required data.  The start procs reside on
"   onc.command_library which is under NFS code control.


  VAR
    nfd$epilog: (push) string = $string(epilog)
    tcp_ip: file = nfd$tcp_ip, $system.tcp_ip
  VAREND

  tcp_ip.onc.command_library.start_ypbind dd=default_domain sia=server_ip_address d=debug

PROCEND activate_ypbind
