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
This commit is contained in:
Roger Luethi 2014-08-24 20:36:08 +02:00
parent ad404571be
commit c16eeebfd3

@ -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"
}