Mercurial > noffle
changeset 383:863270a06774 noffle
[svn] fixed output
author | godisch |
---|---|
date | Fri, 18 Apr 2003 20:52:16 +0100 |
parents | 9ab98c030b05 |
children | 146e6cfe86ba |
files | debian/init |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/debian/init Fri Apr 18 20:42:44 2003 +0100 +++ b/debian/init Fri Apr 18 20:52:16 2003 +0100 @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: init 514 2003-04-02 21:59:58Z godisch $ +# $Id: init 523 2003-04-18 19:52:16Z godisch $ set -e @@ -31,7 +31,7 @@ case "$1" in start) - echo -n "Initializing offline news server: noffle" + echo -n "Initializing offline news server: " if [ "$NOFFLE_FETCHMODE" = ppp ]; then $NOFFLE --offline else @@ -39,7 +39,7 @@ fi ;; stop) - echo -n "Switching offline news server into offline mode: noffle" + echo -n "Switching offline news server into offline mode: " $NOFFLE --offline ;; restart) @@ -53,7 +53,7 @@ exit 4 # LSB: program or service status is unknown ;; online|offline) - echo -n "Switching offline news server into $1 mode: noffle" + echo -n "Switching offline news server into $1 mode: " $NOFFLE --$1 ;; *)