diff options
author | brooks <brooks@FreeBSD.org> | 2005-09-27 02:05:55 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2005-09-27 02:05:55 +0000 |
commit | 436b84c750cff047a168e8b2f1cc5d7fb370a996 (patch) | |
tree | 68f7d663749056313b844281f3f0053ec1ba5240 /etc | |
parent | 797c1bd1ddb14cd93cc0265cdfb54646ebd87493 (diff) | |
download | FreeBSD-src-436b84c750cff047a168e8b2f1cc5d7fb370a996.zip FreeBSD-src-436b84c750cff047a168e8b2f1cc5d7fb370a996.tar.gz |
Don't print anything if we can't do any localpkg shutdown (start already
does this).
Submitted by: Andre Albsmeier <Andre dot Albsmeier at siemens dot com>
PR: conf/86606
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.d/localpkg | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/rc.d/localpkg b/etc/rc.d/localpkg index fb429c9..c4ade87 100644 --- a/etc/rc.d/localpkg +++ b/etc/rc.d/localpkg @@ -53,13 +53,12 @@ pkg_start() pkg_stop() { - echo -n 'Shutting down daemon processes:' - # For each dir in $local_startup, search for init scripts matching *.sh case ${local_startup} in [Nn][Oo] | '') ;; *) + echo -n 'Shutting down daemon processes:' slist="" if [ -z "${script_name_sep}" ]; then script_name_sep=" " |