mirror of
https://github.com/dev-sec/ansible-collection-hardening
synced 2024-11-14 02:47:06 +00:00
7e33ea0bae
Signed-off-by: Martin Schurz <Martin.Schurz@telekom.de>
16 lines
391 B
YAML
16 lines
391 B
YAML
---
|
|
- name: Create 'foo' repository
|
|
ansible.builtin.yum_repository:
|
|
name: foo
|
|
description: mandatory description
|
|
baseurl: file:///mandatory-url
|
|
enabled: false
|
|
gpgcheck: false
|
|
|
|
- name: Create 'bar' repository
|
|
ansible.builtin.yum_repository:
|
|
name: bar
|
|
description: mandatory description
|
|
baseurl: file:///mandatory-url
|
|
enabled: false
|
|
gpgcheck: false
|