redhat_repo
ansible-role-redhat_repo
Add additional yum repositories.
Requirements
None
Role Variables
Variable | Description | Default |
---|---|---|
redhat_repo |
a dict of repositories (see below) | {} |
redhat_repo_extra_packages |
a list of additional packages to install | [] |
Created by yaml2readme.rb
redhat_repo
This variable is a dict of dict. The first level key is the name of
repository. The value, which is also a dict, is key-value pair of
parameters supported by yum_repository
.
Dependencies
None
Example Playbook
- hosts: localhost
roles:
- ansible-role-redhat_repo
vars:
redhat_repo_extra_packages:
- epel-release
redhat_repo:
epel:
mirrorlist: "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-{{ ansible_distribution_major_version }}&arch={{ ansible_architecture }}"
gpgcheck: yes
enabled: yes
License
Copyright (c) 2016 Tomoyuki Sakurai y@trombik.org
Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Author Information
Tomoyuki Sakurai y@trombik.org
This README was created by ansible-role-init
ansible-galaxy install trombik/ansible-role-redhat_repo