SSH에 의해 Rsync 와일드카드 확장이 중단됨

SSH에 의해 Rsync 와일드카드 확장이 중단됨

Ansible은 다음을 생성합니다.

/usr/bin/rsync --delay-updates -F --compress --archive --rsh 'ssh -S none -o StrictHostKeyChecking=no -C -o ControlMaster=auto -o ControlPersist=60s -o PreferredAuthentications=publickey -o ExitOnForwardFailure=yes -o User=ansible' --rsync-path="sudo rsync" --out-format='<<CHANGED>>%i %n%L' template.ephemeric.local:/home/*/bin/ /tmp/test/

나는 그것을 벗겨낸다:

/usr/bin/rsync --rsh 'ssh -o User=ansible' template.ephemeric.local:/home/*/bin/ /tmp/test/

그리고 얻다:

rsync: change_dir "/home/*/bin" failed: No such file or directory (2)

이것은 작동합니다:

/usr/bin/rsync --rsh ssh template.ephemeric.local:/home/*/bin/ /tmp/test/
receiving incremental file list
./
new4
sent 33 bytes  received 164 bytes  394.00 bytes/sec
total size is 0  speedup is 0.00

이것은 정확히 무엇입니까? SSH 옵션을 추가하자마자 와일드카드 확장이 중단됩니다...

어떤 도움이나 해결 방법이라도 대단히 감사하겠습니다.

감사해요.

답변1

매개변수 개수에 관계없이 --rsh. 단지 원격 사용자가 ansible확장 프로그램을 볼 수 없다는 것뿐입니다./home/*/bin/

다음은 지역 사례입니다. 일치하는 디렉터리가 하나 이상 있지만 /home/*/bin없음 /home/*/bins:

rsync --rsh 'ssh -o User=roaima' remotehost:/home/*/bin/ /tmp/bins/
skipping directory .

rsync --rsh 'ssh -o User=roaima' remotehost:/home/*/bins/ /tmp/bins/
rsync: change_dir "/home/*/bins" failed: No such file or directory (2)
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1668) [Receiver=3.1.2]

첫 번째 시도의 응답에서는 skipping directory .전송할 것이 없다고 말했습니다. 주로 rsync재귀를 사용해야 한다는 표시를 생략했기 때문입니다. 여기서는 --archiveor 플래그가 --recursive유용합니다.

관련 정보