Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

handle err when detect amazon linux 2 platform #744

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions lib/train/platforms/detect/helpers/os_linux.rb
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,26 @@ def lsb_release(content)
}
end

def amzn_release(content)
id = /^NAME=\s+(.+)$/.match(content)
release = /^PRETTY_NAME=\s+(.+)$/.match(content)
codename = /^CPE_NAME=\s+(.+)$/.match(content)
{
id: id.nil? ? nil : id[1],
release: release.nil? ? nil : release[1],
codename: codename.nil? ? nil : codename[1],
}
end

def read_linux_lsb
return @lsb unless @lsb.empty?

if !(raw = unix_file_contents("/etc/lsb-release")).nil?
@lsb = lsb_config(raw)
elsif !(raw = unix_file_contents("/usr/bin/lsb-release")).nil?
@lsb = lsb_release(raw)
elsif !(raw = unix_file_contents("/etc/os-release")).nil?
@lsb = amzn_release(raw)
end
end
end
Expand Down