-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #353 from rebtoor/install-podman-during-download-c…
…ache Refactored `edpm_download_cache` role
- Loading branch information
Showing
5 changed files
with
100 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
|
||
- name: Install podman | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_podman | ||
tasks_from: install.yml | ||
tags: | ||
- edpm_podman | ||
- download_cache | ||
|
||
- name: Login to container registries if needed | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_podman | ||
tasks_from: login.yml | ||
tags: | ||
- edpm_podman | ||
- download_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
|
||
- name: Download packages for edpm_bootstrap role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_bootstrap | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_kernel | ||
- download_cache | ||
|
||
- name: Download packages for edpm_podman role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_podman | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_podman | ||
- download_cache | ||
|
||
- name: Download packages for edpm_tuned role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_tuned | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_tuned | ||
- download_cache | ||
|
||
- name: Download packages for edpm_kernel role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_kernel | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_kernel | ||
- download_cache | ||
|
||
- name: Download packages for edpm_network_config role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_network_config | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_network_config | ||
- download_cache | ||
|
||
- name: Download packages for edpm_logrotate_crond role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_logrotate_crond | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_logrotate_crond | ||
- download_cache | ||
|
||
- name: Download packages for edpm_chrony role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_chrony | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_chrony | ||
- download_cache | ||
|
||
- name: Download packages for edpm_sshd role | ||
ansible.builtin.include_role: | ||
name: osp.edpm.edpm_sshd | ||
tasks_from: download_cache.yml | ||
tags: | ||
- edpm_sshd | ||
- download_cache |