From 417ae47d51d8ac21fe12b2e39c0493515354ed96 Mon Sep 17 00:00:00 2001 From: Yaroslav Tykhiy Date: Tue, 25 Jul 2006 17:14:38 +0000 Subject: [PATCH] We notify of failures with err or warn. Messages should end in full stop unless that can lead to confusion. --- etc/rc.subr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/rc.subr b/etc/rc.subr index 52acd32d37c6..d241f839257a 100644 --- a/etc/rc.subr +++ b/etc/rc.subr @@ -613,7 +613,7 @@ run_rc_command() fi if [ ! -x ${_chroot}${command} ]; then - info "run_rc_command: cannot run ($command)." + warn "run_rc_command: cannot run $command" return 1 fi @@ -1141,7 +1141,7 @@ make_symlink() return 1 fi if [ ! -d "$linkdir" ]; then - warn "$_me: the directory $linkdir does not exist" + warn "$_me: the directory $linkdir does not exist." return 1 fi if ! ln -sf $src $link; then