Skip to content
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

add missing part number (bsc#1221922) #56

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.suse</groupId>
<artifactId>subscription-matcher</artifactId>
<version>0.36</version>
<version>0.37</version>

<name>subscription-matcher</name>
<description>Expert system to match SUSE subscriptions to a set of systems</description>
Expand Down
14 changes: 14 additions & 0 deletions src/main/resources/com/suse/matcher/rules/drools/PartNumbers.drl
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,20 @@ rule "Add subscription data for part number 662644477628"
};
end

//AC SLE SAP PWR 1-2S ULVM L3PR S 5Y
rule "Add subscription data for part number 662644478128"
agenda-group "PartNumbers"
when
$subscription : Subscription(partNumber == "662644478128")
then
modify($subscription) {
policy = Policy.UNLIMITED_VIRTUALIZATION,
supportLevel = "l3-priority",
cpus = 2,
stackable = true
};
end

//AC SLE LP PWR INH VRT RQ PR S 3Y
rule "Add subscription data for part number 662644478463"
agenda-group "PartNumbers"
Expand Down
Loading