-
-
Notifications
You must be signed in to change notification settings - Fork 227
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
Test container_podman support in beaker #935
base: master
Are you sure you want to change the base?
Conversation
ea653f3
to
0f036d3
Compare
c1272db
to
765a1e1
Compare
cbc2790
to
ae46bf8
Compare
9ee865e
to
ce0e0f5
Compare
ce0e0f5
to
85eebc1
Compare
@@ -6,7 +6,7 @@ | |||
# In Puppet 7 the locale ends up being C.UTF-8 if it isn't passed. | |||
# This locale doesn't exist in EL7 and won't be supported either. | |||
# At least PostgreSQL runs into this. | |||
ENV['LANG'] = 'en_US.UTF-8' if host['hypervisor'] == 'docker' && host['platform'] == 'el-7-x86_64' | |||
ENV['LANG'] = 'en_US.UTF-8' if host['hypervisor'] =~ %r{docker} && host['platform'] == 'el-7-x86_64' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be =~ container
? not sure what exactly is the value in hypervisor
here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also don't know. I didn't pay too much attention because I want to merge #970 first, and that will remove the whole line anyways.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fair.
it still would be good to know as I think we use similar blocks in other modules too
Pull Request (PR) description
This Pull Request (PR) fixes the following issues