mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-18 22:31:06 -07: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:
parent
cb24ab3014
commit
6d42c5020a
3 changed files with 39 additions and 23 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue