summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpowell-progress <104777878+tpowell-progress@users.noreply.github.com>2022-10-11 15:40:46 -0400
committerGitHub <noreply@github.com>2022-10-11 15:40:46 -0400
commit31c67a01c8e09553c8b6a593531f5b93838801ae (patch)
treec40e342fb063fe562358c81abe1a7bd0d0d27a8d
parent8a5e85e84a778167b8df732c28e4b7da530edd32 (diff)
parent9677131afbaf6d400af49452b6081d927f40e9b8 (diff)
downloadohai-31c67a01c8e09553c8b6a593531f5b93838801ae.tar.gz
Merge pull request #1770 from chef/mp/linter-fix-ec2-plugin
Fix linter error
-rw-r--r--lib/ohai/plugins/ec2.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ohai/plugins/ec2.rb b/lib/ohai/plugins/ec2.rb
index 1a7c1690..e1855434 100644
--- a/lib/ohai/plugins/ec2.rb
+++ b/lib/ohai/plugins/ec2.rb
@@ -104,8 +104,7 @@ Ohai.plugin(:EC2) do
# a single check that combines all the various detection methods for EC2
# @return [Boolean] Does the system appear to be on EC2
def looks_like_ec2?
- return true if hint?("ec2")
- return true if has_ec2_xen_uuid? || has_ec2_amazon_dmi? || has_ec2_xen_dmi? || has_ec2_identifying_number?
+ hint?("ec2") || has_ec2_xen_uuid? || has_ec2_amazon_dmi? || has_ec2_xen_dmi? || has_ec2_identifying_number?
end
collect_data do