Skip to content

Commit

Permalink
Adds profile for aem65_sp22
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-d committed Dec 11, 2024
1 parent baa947b commit a1adca0
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Added new AEM profile: aem65_sp22

## [3.44.0] - 2024-08-11
### Added
Expand Down
54 changes: 54 additions & 0 deletions manifests/install_aem65_sp22.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
define aem_curator::install_aem65_sp22(
$aem_license_base,
$aem_artifacts_base,
$aem_healthcheck_version,
$aem_port,
$run_modes,
$tmp_dir,
$aem_debug_port = undef,
$aem_base = '/opt',
$aem_healthcheck_source = undef,
$aem_id = 'aem',
$aem_type = undef,
$aem_jvm_mem_opts = '-Xss4m -Xmx8192m',
$aem_sample_content = false,
$aem_jvm_opts = [
'-XX:+PrintGCDetails',
'-XX:+PrintGCTimeStamps',
'-XX:+PrintGCDateStamps',
'-XX:+PrintTenuringDistribution',
'-XX:+PrintGCApplicationStoppedTime',
'-XX:+HeapDumpOnOutOfMemoryError',
],
$aem_osgi_configs = undef,
$post_install_sleep_secs = 120,
) {

aem_curator::install_aem65 { "${aem_id}: Install AEM":
tmp_dir => $tmp_dir,
run_modes => $run_modes,
aem_port => $aem_port,
aem_debug_port => $aem_debug_port,
aem_artifacts_base => $aem_artifacts_base,
aem_license_base => $aem_license_base,
aem_healthcheck_version => $aem_healthcheck_version,
aem_healthcheck_source => $aem_healthcheck_source,
aem_base => $aem_base,
aem_sample_content => $aem_sample_content,
aem_jvm_mem_opts => $aem_jvm_mem_opts,
aem_jvm_opts => $aem_jvm_opts,
aem_osgi_configs => $aem_osgi_configs,
post_install_sleep_secs => $post_install_sleep_secs,
aem_id => $aem_id,
aem_type => $aem_type,
} -> aem_curator::install_aem_package { "${aem_id}: Install service pack 22":
tmp_dir => $tmp_dir,
file_name => 'aem-service-pkg-6.5.22.0.zip',
package_name => 'aem-service-pkg',
package_group => 'adobe/cq650/servicepack',
package_version => '6.5.22.0',
artifacts_base => $aem_artifacts_base,
aem_id => $aem_id,
}

}

0 comments on commit a1adca0

Please sign in to comment.