Disable repo report upload on yum systems

This commit is contained in:
2019-03-30 16:35:16 -04:00
parent 11d89c213c
commit 2122154202

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