如何使用 `yum` 模块清理和缓存 Ansible 中的 yum 存储库?
How to use the `yum` module to clean and make cache the yum repo in Ansible?
Ansible 有 yum
模块,
我们可以用它来安装一个包:
ansible all -m yum -a 'name=vim state=latest'
但是如何使用它来执行clean和make cache命令呢?
我只知道脚本方式:
ansible all -m shell -a 'yum clean all'
ansible all -m shell -a 'yum makecache'
那么,如何使用yum
模块清理和缓存yum repo?
Ansible 有 yum
模块,
我们可以用它来安装一个包:
ansible all -m yum -a 'name=vim state=latest'
但是如何使用它来执行clean和make cache命令呢? 我只知道脚本方式:
ansible all -m shell -a 'yum clean all'
ansible all -m shell -a 'yum makecache'
那么,如何使用yum
模块清理和缓存yum repo?