回答:
リモートコンテンツを登録し、ループするよりも、おそらく次のように動作するはずです。
- shell: (cd /remote; find . -maxdepth 1 -type f) | cut -d'/' -f2
register: files_to_copy
- fetch: src=/remote/{{ item }} dest=/local/
with_items: "{{ files_to_copy.stdout_lines }}"
/remote
リモートサーバー上のディレクトリパスと/local/
マスター上のディレクトリで変更する必要がある場所
これを行うには、同期モジュールを使用する必要があります。これはrsyncの素晴らしいパワーを使用しています。任意の深さのファイルとディレクトリ構造をコピーし、防弾で非常に効率的です-変更された実際のバイトのみをコピーします:
- name: Fetch stuff from the remote and save to local
synchronize: src={{ item }} dest=/tmp/ mode=pull
with_items:
- "folder/one"
- "folder/two"
キーはmode
パラメーターです。
同期の方向を指定します。プッシュモードでは、localhostまたはデリゲートがソースです。プルモードでは、コンテキスト内のリモートホストがソースです。
synchronise
モジュールは、ansibleがファイルをコピーする他の方法よりもはるかに信頼性が高く、スケーラブルであることがわかりました。
コメントするのに十分な担当者がいなければ、追加します。
Kęstutisが投稿したものを使用しました。私はわずかな修正をしなければなりませんでした
- shell: (cd /remote; find . -maxdepth 1 -type f) | cut -d'/' -f2
register: files_to_copy
- fetch: src=/remote/{{ item }} dest=/local/
with_items: "{{ files_to_copy.stdout_lines }}"
with_itemsは、変更しなければならなかった領域でした。そうでなければ、ファイルを見つけることができませんでした。
まあ、2.2.1.0のような最新のansibleバージョンを使用している場合は、アイテムに引用符が必要だと思います
- name: use find to get the files list which you want to copy/fetch
find:
paths: /etc/
patterns: ".*passwd$"
use_regex: True
register: file_2_fetch
- name: use fetch to get the files
fetch:
src: "{{ item.path }}"
dest: /tmp/
flat: yes
with_items: "{{ file_2_fetch.files }}"
- hosts: srv-test
tasks:
- find: paths="/var/tmp/collect" recurse=no patterns="*.tar"
register: file_to_copy
- fetch: src={{ item }} dest=/tmp
with_items: files_to_copy.stdout_lines
これを使用します。1.リモートホストから特定のホストにディレクトリをプルします
- name: Gather hosts stats from other hosts
shell: " scp -r {{results_root_dir_src}} root@{{groups['profiling_server'][0]}}:{{results_root_dir_dest}}/abc/"
when: "'profiling_server' not in group_names"
#It will not run on the node where the directories need to be copied.
- name: Gather from host to local
delegate_to: 127.0.0.1
run_once: true
become: false
shell: "scp -r root@{{groups['profiling_server'][0]}}:{{results_root_dir}} ./results_local_location "
在庫
[nodes]
server1
server2
server3
[profiling_server]
server1