Add tip(1)'s emulation of cu(1) to tip's manual page.
[dragonfly.git] / etc / rc.d / ypupdated
1 #!/bin/sh
2 #
3 # $FreeBSD: src/etc/rc.d/ypupdated,v 1.4 2003/07/09 03:21:03 mtm Exp $
4 # $DragonFly: src/etc/rc.d/ypupdated,v 1.2 2004/01/27 00:55:43 rob Exp $
5 #
6
7 # PROVIDE: ypupdated
8 # REQUIRE: rpcbind ypserv
9 # KEYWORD: DragonFly
10
11 . /etc/rc.subr
12
13 name="ypupdated"
14 rcvar="rpc_ypupdated_enable"
15 command="/usr/sbin/rpc.${name}"
16 start_precmd="rpc_ypupdated_precmd"
17
18 rpc_ypupdated_precmd()
19 {
20         if ! checkyesno rpcbind_enable  && \
21             ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
22         then
23                 force_depend rpcbind || return 1
24         fi
25         if ! checkyesno nis_server_enable && \
26             ! /etc/rc.d/ypserv forcestatus 1>/dev/null 2>&1
27         then
28                 force_depend ypserv || return 1
29         fi
30
31         _domain=`domainname`
32         if [ -z "$_domain" ]; then
33                 warn "NIS domainname(1) is not set."
34                 return 1
35         fi
36 }
37
38 load_rc_config $name
39 run_rc_command "$1"