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/
以下は地域のケースです。一致するディレクトリが1つ以上ありますが、/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
再帰を使用しなければならないという表示を省略したからです。ここでは--archive
orフラグが--recursive
便利です。