Skip to content

Commit 34c2a86

Browse files
committed
changed sshpass cipher type
- as type `arcfour` not supported by default in Almalinux8
1 parent 99190d5 commit 34c2a86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

streamer/bin/meg_copy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ w_total=$( rsync -rpvn --update --rsh="/usr/bin/sshpass -p ${console_pass} ssh -
5555

5656
# perform the rsync and monitor the progress with a while loop: the progress is reported to STDOUT
5757
w_done=0
58-
${mydir}/s-unbuffer rsync -rpv --update --rsh="/usr/bin/sshpass -p ${console_pass} ssh -x -T -c arcfour -o Compression=no -o StrictHostKeyChecking=no -l ${console_user}" \
58+
${mydir}/s-unbuffer rsync -rpv --update --rsh="/usr/bin/sshpass -p ${console_pass} ssh -x -T -c aes128-cbc -o Compression=no -o StrictHostKeyChecking=no -l ${console_user}" \
5959
${console_dir}/ ${local_dir}/ | while read -r line; do
6060
w_done=$(( $w_done + 1 ))
6161
if [ $w_done -ge $w_total ]; then

0 commit comments

Comments
 (0)