title | tags | ||
---|---|---|---|
带着问题学习 ansible |
|
如何更快地学习某门技术?
- 学习示例,比如 ansible 可以查看 ansible/ansible-examples
- 带着问题来思考
于是我总结了在我初学 ansible 时所带的一些疑问
添加参数 ignore_errors: true
- name: install pip
register: pip
yum:
name: python-pip
ignore_errors: true
使用 register
监听当前任务执行结果,when
作为分支条件
幂等性。如使用 shell 的话, git clone
两次会有报错,而 git,file 诸多模块很好地保证了特定操作的幂等性。