2
ansible:为什么文件模块被跳过?
我有一个ansible 1.1剧本,我在其中做类似的事情: - name: copy files sudo: True shell: cp /from/* /to/ - name: change owner sudo: True file: path=$item owner=newuser group=newgroup with_fileglob: /to/* 第二项任务“更改所有者”始终处于跳过状态。谁能帮我找出原因?文件模块跳过是因为文件存在?我被卡住了:)
8
ansible