You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the old code would work correctly for ensure => present, but not for ensure => 'some_stream', as dnf does include the whole module spec in the error message and the old regex didn't match anymore.
# dnf module install -d 0 -e 1 -y 389-ds
Error: Problems in request:
broken groups or modules: 389-ds
# dnf module install -d 0 -e 1 -y 389-ds:1.4
Error: Problems in request:
broken groups or modules: 389-ds:1.4
Expected Behavior
module is correctly enabled by switching to the "enable only" codepath automatically
Describe the Bug
the old code would work correctly for
ensure => present
, but not forensure => 'some_stream'
, as dnf does include the whole module spec in the error message and the old regex didn't match anymore.Expected Behavior
module is correctly enabled by switching to the "enable only" codepath automatically
Steps to Reproduce
Environment
Additional Context
Setting
enable_only => true
avoids the issue, but the code should be able to figure this out itself.See voxpupuli/puppet-nodejs#488
The text was updated successfully, but these errors were encountered: