-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Template changes to support RHEL9 on ARM64 for PEM (agent and server)
- Loading branch information
1 parent
18345f7
commit 1268b28
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
install_template/templates/products/postgres-enterprise-manager-agent/rhel-9_arm64.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{% extends "products/postgres-enterprise-manager-agent/base.njk" %} | ||
{% set platformBaseTemplate = "rhel-9-or-ol-9" %} | ||
{% block prerequisites %}{% endblock prerequisites %} |
11 changes: 11 additions & 0 deletions
11
install_template/templates/products/postgres-enterprise-manager-server/rhel-9_arm64.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "products/postgres-enterprise-manager-server/base.njk" %} | ||
{% set platformBaseTemplate = "rhel-9-or-ol-9" %} | ||
{% set ssutilsName %}sslutils_<x> postgresql<x>-contrib{% endset %} | ||
{% set ssutilsExtendedName %}edb-postgresextended<x>-contrib{% endset %} | ||
{% set ssutilsExtendedFirstName %}edb-postgresextended<x>-sslutils{% endset %} | ||
{% block prerequisites %}{% endblock prerequisites %} | ||
{% block firewallCommand %}```shell | ||
firewall-cmd --permanent --zone=public --add-port=8443/tcp | ||
|
||
firewall-cmd --reload | ||
```{% endblock firewallCommand %} |