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
Hello,
A new bug with version 2.1.3 on CentOS:
Could not find resource 'Yumrepo[icinga-testing-builds]' for relationship on 'Package[createrepo]'
I fix this with this modification on manifests/repos/yum.pp:
manifests/repos/yum.pp
$repos.each |String $repo_name, Hash $repo_config| { if $repo_name in keys($managed) and $managed[$repo_name] { yumrepo { $repo_name: * => $repo_config, require => File['/etc/yum.repos.d/netways-plugins-release.repo', '/etc/yum.repos.d/netways-extras-release.repo'], } } Yumrepo[$repo_name] -> Package <| |> }
to:
$repos.each |String $repo_name, Hash $repo_config| { if $repo_name in keys($managed) and $managed[$repo_name] { yumrepo { $repo_name: * => $repo_config, require => File['/etc/yum.repos.d/netways-plugins-release.repo', '/etc/yum.repos.d/netways-extras-release.repo'], } -> Package <| |> } }
The text was updated successfully, but these errors were encountered:
Strange, don't see that makes a difference. Ah now. Dependency belongs to the wrong block.
Sorry, something went wrong.
b0e82e9
before I publish a new release, can you test the master branch?
Yes, it works (tested on CentOS and Debian). :-)
Thx, release is upcoming.
lbetz
No branches or pull requests
Hello,
A new bug with version 2.1.3 on CentOS:
I fix this with this modification on
manifests/repos/yum.pp
:to:
The text was updated successfully, but these errors were encountered: