-
Notifications
You must be signed in to change notification settings - Fork 103
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
modulesync 7.2.0 #198
modulesync 7.2.0 #198
Conversation
cc6e4fd
to
0d56a5b
Compare
Well, this is a bug in beaker_puppet_helpers with quoting:
|
voxpupuli/beaker_puppet_helpers#40 should fix that. |
spec/spec_helper_acceptance.rb
Outdated
install_module_from_forge('puppet-epel', '>= 3.0.1 < 4.0.0') if fact_on(host, 'os.name') == 'CentOS' | ||
install_module_from_forge('puppetlabs-apache', '>= 5.7.0 < 7.0.0') | ||
install_module_from_forge('puppetlabs-java', '>= 6.3.0 < 8.0.0') | ||
install_puppet_module_via_pmt_on(host, 'puppet-epel', '>= 3.0.1 < 4.0.0') if fact_on(host, 'os.name') == 'CentOS' |
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.
OracleLinux is failing because it's not installing the EPEL module here. That was also an issue previously, so it's not a regression. Just wondering how this ever worked.
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.
there's a high chance that when the tests passed the last time, acceptance tests weren't enabled for OracleLinux?
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.
Oh yes, that's very likely.
While running acceptance tests it proved that it couldn't install.
Now includes #204 to drop OracleLinux, since it failed in testing. |
No description provided.