We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd7f25a commit 5273d90Copy full SHA for 5273d90
functions/pe_db_names.pp
@@ -9,10 +9,20 @@ function peadm::pe_db_names (
9
'pe-rbac',
10
]
11
12
+ $pe_2025_3_or_later = SemVerRange('>= 2025.3.0')
13
$pe_2025_or_later = SemVerRange('>= 2025.0.0')
14
$pe_2023_8_or_later = SemVerRange('>= 2023.8.0')
15
16
case $pe_ver {
17
+ # The infra-assistant was added in 2025.3.0
18
+ $pe_2025_3_or_later: {
19
+ $original_db_names + [
20
+ 'pe-hac',
21
+ 'pe-patching',
22
+ 'pe-infra-assistant',
23
+ ]
24
+ }
25
+
26
# The patching service was added in 2025.0.0
27
$pe_2025_or_later: {
28
$original_db_names + [
0 commit comments