From c16eeebfd3f331f9d250ee03b7a9174d77d944e5 Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Sun, 24 Aug 2014 20:36:08 +0200 Subject: [PATCH] labs: reduce rm call verbosity The verbose flag for one rm use was once useful for debugging, but now just screws up the osbash.sh output. This patch removes the flag. Change-Id: I4f91bdb1d4406f3fb03b6de43bdfc91ce6405043 --- labs/lib/osbash/functions.host | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/lib/osbash/functions.host b/labs/lib/osbash/functions.host index 3cd8a388..c518f0a2 100644 --- a/labs/lib/osbash/functions.host +++ b/labs/lib/osbash/functions.host @@ -140,7 +140,7 @@ function ssh_process_autostart { local SCR_PATH="" for SCRIPT_PATH in "$AUTOSTART_DIR/"*.sh; do ssh_exec_script "$SSH_PORT" "$SCRIPT_PATH" - rm -vf "$SCRIPT_PATH" >&2 + rm -f "$SCRIPT_PATH" >&2 done touch "$STATUS_DIR/done" }