yum 模块
选项:
config_file:yum的配置文件
disable_gpg_check:关闭gpg_check
disablerepo:不启用某个源
enablerepo:启用某个源
list
name:要进行操作的软件包的名字,也可以传递一个url或者一个本地的rpm包的路径
state # 状态(installted ,present<安装>,latest<安装>,absent<删除>)
安装软件
➜ ~ ansible k8s -m yum -a 'name=vim state=present'
卸载
➜ ~ ansible k8s -m yum -a 'name=vim state=absent'