File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,9 @@ el_patching_required_packages: "yum-utils"
44el_patching_reboot_timeout : 600
55el_patching_method : " security"
66el_patching_auto_reboot : false
7- el_patching_check_mode : false
7+ el_patching_check_mode : false
8+
9+ # Optional exclude variable for group_vars or host_vars
10+ # el_patching_exclude_packages:
11+ # - tar
12+ # - zip
Original file line number Diff line number Diff line change 1010 ansible.builtin.dnf :
1111 name : " *"
1212 state : latest
13+ exclude : " {{ el_patching_exclude_packages | default(omit) }}"
1314 check_mode : " {{ el_patching_check_mode }}"
1415 when : el_patching_method == "all"
1516
1819 name : " *"
1920 security : true
2021 state : latest
22+ exclude : " {{ el_patching_exclude_packages | default(omit) }}"
2123 check_mode : " {{ el_patching_check_mode }}"
2224 when : el_patching_method == "security"
2325
2628 name : " *"
2729 bugfix : true
2830 state : latest
31+ exclude : " {{ el_patching_exclude_packages | default(omit) }}"
2932 check_mode : " {{ el_patching_check_mode }}"
3033 when : el_patching_method == "bugfix"
3134
You can’t perform that action at this time.
0 commit comments