ansible:远程机器上的文件有with_fileglobs吗?

时间:2014-06-08 23:52:21

标签: bash shell ansible ansible-playbook

我正在尝试将these行变成我可以放在ansible剧本中的内容:

# Install Prezto files
shopt -s extglob
shopt -s nullglob
files=( "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/!(README.md) )
for rcfile in "${files[@]}"; do
    [[ -f $rcfile ]] && ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile##*/}"
done

到目前为止,我有以下内容:

- name: Link Prezto files
  file: src={{ item }} dest=~ state=link
  with_fileglob:
    - ~/.zprezto/runcoms/z*

我知道它不一样,但它会选择相同的文件:除了主机上的with_fileglob外观,我希望它能在远程机器上查看。

有没有办法做到这一点,或者我应该只使用shell脚本?

4 个答案:

答案 0 :(得分:17)

清除与glob匹配的不需要的文件的干净的Ansible方法是:

- name: List all tmp files
  find:
    paths: /tmp/foo
    patterns: "*.tmp"
  register: tmp_glob

- name: Cleanup tmp files
  file:
    path: "{{ item.path }}"
    state: absent
  with_items:
    - "{{ tmp_glob.files }}"

答案 1 :(得分:6)

Bruce P的解决方案有效,但它需要一个附加文件并且有点乱。以下是一个纯粹的安理解决方案。

第一个任务抓取文件名列表并将其存储在files_to_copy中。第二个任务将每个文件名附加到您提供的路径并创建符号链接。

- name: grab file list
  shell: ls /path/to/src
  register: files_to_copy
- name: create symbolic links
  file:
    src: "/path/to/src/{{ item }}"
    dest: "path/to/dest/{{ item }}"
    state: link
  with_items: files_to_copy.stdout_lines

答案 2 :(得分:2)

当使用with_fileglob等时,文件模块确实在服务器上查找ansible正在运行的文件。因为你想处理仅存在于远程机器上的文件,那么你可以做一些事情。一种方法是在一个任务中复制shell脚本,然后在下一个任务中调用它。你甚至可以使用这样一个事实:文件被复制为只运行脚本的方法,如果它还不存在:

- name: Copy link script
  copy: src=/path/to/foo.sh
        dest=/target/path/to/foo.sh
        mode=0755
  register: copied_script

- name: Invoke link script
  command: /target/path/to/foo.sh
  when: copied_script.changed

另一种方法是创建一个完整的命令行来完成你想要的东西并使用shell模块调用它:

- name: Generate links
  shell: find ~/.zprezto/runcoms/z* -exec ln -s {} ~ \;

答案 3 :(得分:-2)

您可以使用with_lines来完成此任务:

- name: Link Prezto files
  file: src={{ item }} dest=~ state=link
  with_lines: ls ~/.zprezto/runcoms/z*