mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Fix for changes in clearlinux (#49344)
* Fix for changes in clearlinux clearlinux is now providing /etc/os-release file and ansible is identifying as NA then this change allow ansible to find it Signed-off-by: Josue David Hernandez Gutierrez <josue.d.hernandez.gutierrez@intel.com> * Add changelog fragment for clearlinux changes Signed-off-by: Josue David Hernandez Gutierrez <josue.d.hernandez.gutierrez@intel.com>
This commit is contained in:
committed by
John R Barker
parent
cb24ab3014
commit
6d42c5020a
@@ -74,9 +74,9 @@ class DistributionFiles:
|
||||
{'path': '/etc/lsb-release', 'name': 'Debian'},
|
||||
{'path': '/etc/lsb-release', 'name': 'Mandriva'},
|
||||
{'path': '/etc/sourcemage-release', 'name': 'SMGL'},
|
||||
{'path': '/usr/lib/os-release', 'name': 'ClearLinux'},
|
||||
{'path': '/etc/os-release', 'name': 'NA'},
|
||||
{'path': '/etc/coreos/update.conf', 'name': 'Coreos'},
|
||||
{'path': '/usr/lib/os-release', 'name': 'ClearLinux'},
|
||||
)
|
||||
|
||||
SEARCH_STRING = {
|
||||
@@ -422,9 +422,9 @@ class Distribution(object):
|
||||
{'path': '/etc/lsb-release', 'name': 'Mandriva'},
|
||||
{'path': '/etc/altlinux-release', 'name': 'Altlinux'},
|
||||
{'path': '/etc/sourcemage-release', 'name': 'SMGL'},
|
||||
{'path': '/usr/lib/os-release', 'name': 'ClearLinux'},
|
||||
{'path': '/etc/os-release', 'name': 'NA'},
|
||||
{'path': '/etc/coreos/update.conf', 'name': 'Coreos'},
|
||||
{'path': '/usr/lib/os-release', 'name': 'ClearLinux'},
|
||||
)
|
||||
|
||||
SEARCH_STRING = {
|
||||
|
||||
Reference in New Issue
Block a user