yum_repository: use https:// for EPEL examples (#3464)
This whole module is really lacking in security guidelines, but downloading RPMs via plain `http://` without gpg is quite bad. Let's use `https://` for the EPEL examples for a start.
This commit is contained in:
parent
9513388819
commit
5bfbeadca3
1 changed files with 2 additions and 2 deletions
|
@ -401,14 +401,14 @@ EXAMPLES = '''
|
|||
yum_repository:
|
||||
name: epel
|
||||
description: EPEL YUM repo
|
||||
baseurl: http://download.fedoraproject.org/pub/epel/$releasever/$basearch/
|
||||
baseurl: https://download.fedoraproject.org/pub/epel/$releasever/$basearch/
|
||||
|
||||
- name: Add multiple repositories into the same file (1/2)
|
||||
yum_repository:
|
||||
name: epel
|
||||
description: EPEL YUM repo
|
||||
file: external_repos
|
||||
baseurl: http://download.fedoraproject.org/pub/epel/$releasever/$basearch/
|
||||
baseurl: https://download.fedoraproject.org/pub/epel/$releasever/$basearch/
|
||||
gpgcheck: no
|
||||
|
||||
- name: Add multiple repositories into the same file (2/2)
|
||||
|
|
Loading…
Reference in a new issue