diff options
Diffstat (limited to 'recipes/tftp-hpa/files/init')
-rw-r--r-- | recipes/tftp-hpa/files/init | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/tftp-hpa/files/init b/recipes/tftp-hpa/files/init index 2a24884550..5ad8c52cb8 100644 --- a/recipes/tftp-hpa/files/init +++ b/recipes/tftp-hpa/files/init @@ -60,12 +60,12 @@ d_reload() { case "$1" in start) - echo -n "Starting $DESC: $NAME" + echo "Starting $DESC: $NAME" d_start echo "." ;; stop) - echo -n "Stopping $DESC: $NAME" + echo "Stopping $DESC: $NAME" d_stop echo "." ;; @@ -88,7 +88,7 @@ case "$1" in # option to the "reload" entry above. If not, "force-reload" is # just the same as "restart". # - echo -n "Restarting $DESC: $NAME" + echo "Restarting $DESC: $NAME" d_stop sleep 1 d_start |