Skip to content

Commit a716b55

Browse files
committed
Fix bug where standard/large + HA was not detected
The validate_architecture() function had a bug where it did not report HA status correctly for standard/large installs including HA.
1 parent 6e70cc1 commit a716b55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions/validate_architecture.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function peadm::validate_architecture (
1818
}})
1919
}
2020
[true, true, false, false]: { # Standard or Large, HA
21-
({ 'high-availability' => false, 'architecture' => $compiler_hosts ? {
21+
({ 'high-availability' => true, 'architecture' => $compiler_hosts ? {
2222
undef => 'standard',
2323
default => 'large',
2424
}})

0 commit comments

Comments
 (0)