We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7689fa8 + b8c116f commit 918e83bCopy full SHA for 918e83b
defaults/main.yml
@@ -9,3 +9,6 @@
9
yum_update_command: minimal-security
10
wait_ssh_down_timeout: 120
11
wait_ssh_up_timeout: 500
12
+disabled_repos: ''
13
+enabled_repos: ''
14
+excluded_packages: ''
tasks/main.yml
@@ -52,6 +52,9 @@
52
update_cache: yes
53
name: '*'
54
state: latest
55
+ exclude: '{{ excluded_packages }}'
56
+ disablerepo: '{{ disabled_repos }}'
57
+ enablerepo: '{{ enabled_repos }}'
58
when: update_all is defined
59
tags:
60
- update_all
0 commit comments