From 36bcc7877ec2c4245477fe779d5255d1cfef9550 Mon Sep 17 00:00:00 2001 From: Ralf Zerres Date: Tue, 5 Jun 2018 11:21:57 +0200 Subject: [PATCH] dsnap-sync: make 'pv' output selectable --- src/bin/dsnap-sync | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/dsnap-sync b/src/bin/dsnap-sync index 79fb068..77bf624 100755 --- a/src/bin/dsnap-sync +++ b/src/bin/dsnap-sync @@ -332,6 +332,10 @@ parse_params () { donotify=false shift 1 ;; + --nopv) + do_pv_cmd=false + shift 1 + ;; -p|--port) port=$2 shift 2 @@ -1081,6 +1085,7 @@ Options: -n, --noconfirm Do not ask for confirmation for each configuration. Will still prompt for backup --batch directory name on first backup" --nonotify Disable graphical notification (via dbus) + --nopv Disable graphical progress output (disable pv) -r, --remote
Send the snapshot backup to a remote machine. The snapshot will be sent via ssh. You should specify the remote machine's hostname or ip address. The 'root' user must be permitted to login on the remote machine.