Disable repo report upload on yum systems

This commit is contained in:
Ethan Paul 2019-03-30 16:35:16 -04:00
parent 11d89c213c
commit 2122154202
No known key found for this signature in database
GPG Key ID: D0E2CBF1245E92BF
1 changed files with 9 additions and 0 deletions

View File

@ -26,3 +26,12 @@
path: /etc/yum/pluginconf.d/subscription-manager.conf
create: yes
state: present
- name: Disable yum repo report upload
become: true
lineinfile:
regex: enabled=1
line: enabled=0
path: /etc/yum/pluginconf.d/enabled_repos_upload.conf
create: yes
state: present