Actions
Bug #6607
closedPackage Filter rules should not restrict on unique package name.
Difficulty:
Triaged:
Yes
Bugzilla link:
Pull request:
Description
Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1106565
Description of problem:
Having repository with wit packages
package-0:1.0.0
package-0:2.0.0
package-0:3.0.0
package-0:4.0.0
There isn't an easy way to setup a filter such that the following packages are included:
package-0:2.0.0
package-0:4.0.0
Simply because:
validates :name, :presence => true, :uniqueness => { :scope => :content_view_filter_id }
You can't have two rules with the same package name. We should either lift this restriction or support a comma seperated list of values for exact versions.
Actions