Skip to content
Snippets Groups Projects
Commit b939c24b authored by Spencer Smith's avatar Spencer Smith Committed by GitHub
Browse files

Merge pull request #1250 from digitalrebar/master

bootstrap task on centos missing packages
parents 3eb494db 041d4d66
No related branches found
No related tags found
No related merge requests found
...@@ -13,3 +13,15 @@ ...@@ -13,3 +13,15 @@
line: "enabled=0" line: "enabled=0"
state: present state: present
when: fastestmirror.stat.exists when: fastestmirror.stat.exists
- name: Install packages requirements for bootstrap
action:
module: "{{ ansible_pkg_mgr }}"
name: "{{ item }}"
state: latest
register: bs_pkgs_task_result
until: bs_pkgs_task_result|succeeded
retries: 4
delay: "{{ retry_stagger | random + 3 }}"
with_items: "libselinux-python"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment