centos – 为ansible添加额外的模块

前端之家收集整理的这篇文章主要介绍了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
原文链接:https://www.f2er.com/centos/373592.html

猜你在找的CentOS相关文章