From 592d797d9bd0b57d4381114943402e05e7869232 Mon Sep 17 00:00:00 2001 From: mtm Date: Wed, 9 Jul 2003 03:21:03 +0000 Subject: [PATCH] Be specific about which domainname is not set. It seems the man page reference is not enough. --- etc/rc.d/ypbind | 2 +- etc/rc.d/yppasswdd | 2 +- etc/rc.d/ypserv | 2 +- etc/rc.d/ypset | 2 +- etc/rc.d/ypupdated | 2 +- 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 0542e07a787f..f8d2456b8051 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 0891f1064111..ffd3f11807fd 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 657a37758937..66c78ad807a3 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 135c5ba86d92..df643b30ef97 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 1dc43f505b2e..1fedf76968ef 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 eeb5a824b2ec..d39a9c497e47 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 }