本站教程收集整理的这篇文章主要介绍了centos – 为ansible添加额外的模块,本站教程本站觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经安装了ansible来自动部署我的系统,我需要一些额外的模块来处理它.我在ansible
github上下载了模块yumrepo.py并将其添加到我的库目录中.但是当我运行时,它显示错误错误:yumrepo不是Ansible Play的合法参数.这是我在ansible.cfg文件中的配置.
inventory = /etc/ansible/hosts library = /etc/ansible/module/ remote_tmp = $HOME/.ansible/tmp
和我的剧本
--- - name: Add multiple repositories into the same file (1/2) yumrepo: name: epel description: EPEL YUM repo file: external_repos baseurl: http://download.fedoraproject.org/pub/epel/$releasever/$basearch/ gpgcheck: no
希望有人帮助我.非常感谢
您从哪个存储库下载yumrepo.py?
你应该使用的是ansible-yumrepo角色:https://github.com/picotrading/ansible-yumrepo(见这里more about roles)
您可以将其安装在角色目录中,该目录可以与您的Playbook位于同一目录中.我发现当我从github克隆存储库时,我需要将角色从ansible-yumrepo重命名为yumrepo.
$git clone https://github.com/picoTrading/ansible-yumrepo.git roles/yumrepo
然后,以下剧本可以作为您想要做的事情的起点:
- hosts: all roles: - role: yumrepo yumrepo_repos: myrepo1: name: epel description: EPEL YUM repo file: external_repos baseurl: http://download.fedoraproject.org/pub/epel/$releasever/$basearch/ gpgcheck: no
本站总结
以上是本站教程为你收集整理的centos – 为ansible添加额外的模块全部内容,希望文章能够帮你解决centos – 为ansible添加额外的模块所遇到的程序开发问题。
如果觉得本站教程网站内容还不错,欢迎将本站教程推荐给好友。
本图文内容来源于网友网络收集整理提供,作为学便宜香港vps习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。