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
The added general ordering via
puppet-proftpd/manifests/install.pp
Lines 6 to 8 in 0099de1
package
yumrepo
Since this module does not at all manages any yumrepo resources there should be no yumrepo ordering inside.
When acceptance tests need that kind of thing please only define it in the acceptance setup like so:
pp = <<-EOS if $facts['os']['family'] == 'RedHat' { include epel Class['epel'] -> Class['proftpd'] } class { 'proftpd': } EOS
The text was updated successfully, but these errors were encountered:
fraenki
Successfully merging a pull request may close this issue.
The added general ordering via
puppet-proftpd/manifests/install.pp
Lines 6 to 8 in 0099de1
package
is installed before a specificyumrepo
will be created.Since this module does not at all manages any
yumrepo
resources there should be noyumrepo
ordering inside.When acceptance tests need that kind of thing please only define it in the acceptance setup like so:
The text was updated successfully, but these errors were encountered: