Tok
2018-11-09 04259f14a042c84a1164402d9ac2009c9db6adf5
commit | author | age
265811 1 #vim: set ft=ansible:
1c8513 2 ---
S 3 ######################### Install Basic Packages
4 - name: install basic packages
5   yum:
8bccfd 6     name: "{{common_packages}}"
1c8513 7     state: present
dc45d0 8   register: yumr
GC 9   until: yumr is succeeded
717697 10   retries: 10
GC 11   delay: 10
954921 12   #any_errors_fatal: true
1c8513 13   tags:
S 14     - install_common_packages