diff options
Diffstat (limited to 'package/proftpd/S50proftpd')
-rwxr-xr-x | package/proftpd/S50proftpd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/proftpd/S50proftpd b/package/proftpd/S50proftpd index dd6cad2e53..336680a456 100755 --- a/package/proftpd/S50proftpd +++ b/package/proftpd/S50proftpd @@ -8,7 +8,7 @@ test -f $DAEMON || exit 0 [ ! -f /var/log/wtmp ] && touch /var/log/wtmp start() { - echo -n "Starting ProFTPD: " + printf "Starting ProFTPD: " $DAEMON if [ $? != 0 ]; then echo "FAILED" @@ -19,7 +19,7 @@ start() { } stop() { - echo -n "Stopping ProFTPD: " + printf "Stopping ProFTPD: " killall proftpd echo "done" } |