We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On a node with no domain, fact_on(sut, 'networking.domain') returns nil. This will break the following two lines:
fact_on(sut, 'networking.domain')
nil
lib/simp/beaker_helpers.rb:726: current_domain = fact_on(sut, 'networking.domain').strip lib/simp/beaker_helpers.rb:747: if fact_on(sut, 'networking.domain').strip.empty?
This results in the following error:
Failure/Error: fix_errata_on(hosts) NoMethodError: undefined method `strip' for nil # ./vendor/ruby/3.3.0/gems/simp-beaker-helpers-1.34.0/lib/simp/beaker_helpers.rb:726:in `block in linux_errata'
The text was updated successfully, but these errors were encountered:
Fix error when no domain is set
372e202
Fixes simp#222
Fix error when no domain is set (#223)
1434ced
Fixes #222
Successfully merging a pull request may close this issue.
On a node with no domain,
fact_on(sut, 'networking.domain')
returnsnil
. This will break the following two lines:This results in the following error:
The text was updated successfully, but these errors were encountered: