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 be3a15d commit 6b7273dCopy full SHA for 6b7273d
functions/pe_db_names.pp
@@ -9,11 +9,22 @@ function peadm::pe_db_names (
9
'pe-rbac',
10
]
11
12
+ $pe_2025_6_or_later = SemVerRange('>=2025.6.0')
13
$pe_2025_3_or_later = SemVerRange('>= 2025.3.0')
14
$pe_2025_or_later = SemVerRange('>= 2025.0.0')
15
$pe_2023_8_or_later = SemVerRange('>= 2023.8.0')
16
17
case $pe_ver {
18
+ # The workflow service was added in 2025.6.0
19
+ $pe_2025_6_or_later: {
20
+ $original_db_names + [
21
+ 'pe-hac',
22
+ 'pe-patching',
23
+ 'pe-infra-assistant',
24
+ 'pe-workflow',
25
+ ]
26
+ }
27
+
28
# The infra-assistant was added in 2025.3.0
29
$pe_2025_3_or_later: {
30
$original_db_names + [
0 commit comments