如何使用ansible

时间:2017-02-23 19:13:24

标签: ansible ansible-2.x

我必须删除一些目录并在复制到远程之前在本地创建它们。反正有没有在本地删除和创建?

目前我正在使用'命令'

command: rm -r directory

但警告显示为

Consider using file module with state=absent rather than running rm

我们可以使用任何选项来更改本地文件夹吗?

1 个答案:

答案 0 :(得分:0)

更新:
当前的 Ansible (2.10) 不喜欢 - local_action: ,而是使用 delegate_to:

- name: Remove directory 'dir1'
  file: 
    path: "path/to/dir1" 
    state: absent
  delegate_to: localhost