Skip to content

Commit

Permalink
do not try to be smart about compression and encryption let the user …
Browse files Browse the repository at this point in the history
…set this on his own in .ssh/config
  • Loading branch information
oetiker committed May 2, 2016
1 parent f81f973 commit 93130b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ZnapZend/ZFS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ has sudo => sub { 0 };
has sendDelay => sub { 3 };
has connectTimeout => sub { 30 };
has propertyPrefix => sub { q{org.znapzend} };
has sshCmdArray => sub { [qw(ssh -o Compression=yes -o CompressionLevel=1 -o),
qw(Cipher=arcfour -o batchMode=yes -o), 'ConnectTimeout=' . shift->connectTimeout] };
has sshCmdArray => sub { [qw(ssh),
qw(-o batchMode=yes -o), 'ConnectTimeout=' . shift->connectTimeout] };
has mbufferParam => sub { [qw(-q -s 128k -W 60 -m)] }; #don't remove the -m as the buffer size will be added
has scrubInProgress => sub { qr/scrub in progress/ };
has autoCreation => sub { 0 };
Expand Down

0 comments on commit 93130b6

Please sign in to comment.