您的位置:首页 > 其它

ansible判定文件或者文件夹是否存在

2017-11-30 19:18 155 查看
ansible 的常用模块中没有判定当文件存在或者不存在时,执行某个执行

使用下面方法能简单判定某个文件是否存在

---

- name: judge a file or dir is exits
shell: ls /home/sfy
ignore_errors: True
register: result

- shell: echo "file exit"
when: result|succeeded

- shell: echo "file not exit"
when: result|failed


另外一种

#当/root/.ssh/id_rsa文件存在时,则修改该文件权限
- command: chmod 600 /root/.ssh/id_rsa removes=/root/.ssh/id_rsa
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ansible