diff options
author | mtm <mtm@FreeBSD.org> | 2003-07-09 03:21:03 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2003-07-09 03:21:03 +0000 |
commit | 592d797d9bd0b57d4381114943402e05e7869232 (patch) | |
tree | b3c7ff24675e984e95f70972752774dc8b6226e9 /etc | |
parent | 9687583ade057bcacf1441d12c1c95557fc7c7e7 (diff) | |
download | FreeBSD-src-592d797d9bd0b57d4381114943402e05e7869232.zip FreeBSD-src-592d797d9bd0b57d4381114943402e05e7869232.tar.gz |
Be specific about which domainname is not set. It seems the man page
reference is not enough.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.d/ypbind | 2 | ||||
-rwxr-xr-x | etc/rc.d/yppasswdd | 2 | ||||
-rwxr-xr-x | etc/rc.d/ypserv | 2 | ||||
-rw-r--r-- | etc/rc.d/ypset | 2 | ||||
-rw-r--r-- | etc/rc.d/ypupdated | 2 | ||||
-rw-r--r-- | etc/rc.d/ypxfrd | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/etc/rc.d/ypbind b/etc/rc.d/ypbind index 0542e07..f8d2456 100755 --- a/etc/rc.d/ypbind +++ b/etc/rc.d/ypbind @@ -40,7 +40,7 @@ ypbind_precmd() _domain=`domainname` if [ -z "$_domain" ]; then - warn "domainname(1) is not set." + warn "NIS domainname(1) is not set." return 1 fi } diff --git a/etc/rc.d/yppasswdd b/etc/rc.d/yppasswdd index 0891f10..ffd3f11 100755 --- a/etc/rc.d/yppasswdd +++ b/etc/rc.d/yppasswdd @@ -46,7 +46,7 @@ yppasswdd_precmd() _domain=`domainname` if [ -z "$_domain" ]; then - warn "domainname(1) is not set." + warn "NIS domainname(1) is not set." return 1 fi } diff --git a/etc/rc.d/ypserv b/etc/rc.d/ypserv index 657a377..66c78ad 100755 --- a/etc/rc.d/ypserv +++ b/etc/rc.d/ypserv @@ -40,7 +40,7 @@ ypserv_precmd() _domain=`domainname` if [ -z "$_domain" ]; then - warn "domainname(1) is not set." + warn "NIS domainname(1) is not set." return 1 fi diff --git a/etc/rc.d/ypset b/etc/rc.d/ypset index 135c5ba..df643b3 100644 --- a/etc/rc.d/ypset +++ b/etc/rc.d/ypset @@ -31,7 +31,7 @@ ypset_precmd() _domain=`domainname` if [ -z "$_domain" ]; then - warn "domainname(1) is not set." + warn "NIS domainname(1) is not set." return 1 fi } diff --git a/etc/rc.d/ypupdated b/etc/rc.d/ypupdated index 1dc43f5..1fedf76 100644 --- a/etc/rc.d/ypupdated +++ b/etc/rc.d/ypupdated @@ -29,7 +29,7 @@ rpc_ypupdated_precmd() _domain=`domainname` if [ -z "$_domain" ]; then - warn "domainname(1) is not set." + warn "NIS domainname(1) is not set." return 1 fi } diff --git a/etc/rc.d/ypxfrd b/etc/rc.d/ypxfrd index eeb5a82..d39a9c4 100644 --- a/etc/rc.d/ypxfrd +++ b/etc/rc.d/ypxfrd @@ -31,7 +31,7 @@ ypxfrd_precmd() _domain=`domainname` if [ -z "$_domain" ]; then - warn "domainname(1) is not set." + warn "NIS domainname(1) is not set." return 1 fi } |