We notify of failures with err or warn.

Messages should end in full stop unless
that can lead to confusion.
This commit is contained in:
Yaroslav Tykhiy 2006-07-25 17:14:38 +00:00
parent e59cb1e6d4
commit 417ae47d51
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160667

View File

@ -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