You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This role installs Adobe Experience Manager (AEM) 6.x on Debian/Ubuntu or RHEL/C
5
5
6
6
## Requirements
7
7
8
-
This role requires Ansible 2.2 or higher and works with AEM 6.1 or higher. Also required are an AEM quickstart JAR file and a valid AEM license file. The `license.properties` files needs be made accessible to the role, normally by copying it into the `files` folder in the playbook directory. The `AEM_*_Quickstart.jar` can be supplied in the same way or retrieved from a Nexus/RPM/APT repository, an HTTP URL or a S3 bucket (see below).
8
+
This role requires Ansible 2.2 or higher and works with AEM 6.1 or higher. Also required are an AEM quickstart JAR file and a valid AEM license file. The `license.properties` files needs be made accessible to the role, normally by copying it into the `files` folder in the playbook directory. The `AEM_*_Quickstart.jar` can be supplied in the same way or retrieved from a Maven/RPM/APT repository, an HTTP URL or a S3 bucket (see below).
9
9
10
10
## Role Variables
11
11
@@ -36,24 +36,24 @@ The version of AEM to install, filename of the Quickstart.jar and optional SHA1
36
36
aem_cms_download_path: /tmp
37
37
aem_cms_remove_download: false
38
38
39
-
The installation source, i.e. where the installation Quickstart.jar should be retrieved from. This can either be `file` for a local file, `package` for a distribution package , `url` for a generic URL, `s3` for an object from a S3 bucket or `Nexus` for a Maven repository. If using a local file it needs to be copied someplace the Ansible `copy` module can find it. `aem_cms_download_path` controls where the installation file will be downloaded to on the target host, and `aem_cms_remove_download` whether the file will be deleted after installation.
39
+
The installation source, i.e. where the installation Quickstart.jar should be retrieved from. This can either be `file` for a local file, `package` for a distribution package , `url` for a generic URL, `s3` for an object from a S3 bucket or `maven_repository` for a Maven repository. If using a local file it needs to be copied someplace the Ansible `copy` module can find it. `aem_cms_download_path` controls where the installation file will be downloaded to on the target host, and `aem_cms_remove_download` whether the file will be deleted after installation.
If using a distribution package, `aem_cms_package` must be set to the name of the package to install and `aem_cms_package_home` to the directory the package will install the AEM `Quickstart.jar` into. The role will use this to move the installation to `aem_cms_home`.
45
45
46
-
aem_cms_nexus_coordinates:
46
+
aem_cms_maven_repository_coordinates:
47
47
- {
48
48
group_id: group.id,
49
49
artifact_id: artifact.id,
50
50
version: "{{ aem_cms_version }}",
51
51
repository_url: 'https://repo.url'
52
52
}
53
-
aem_cms_nexus_username: <username>
54
-
aem_cms_nexus_password: <password>
53
+
aem_cms_maven_repository_username: <username>
54
+
aem_cms_maven_repository_password: <password>
55
55
56
-
Used to configure the Maven coordinates of the JAR artifact and Nexus credentials when using Nexus as installation source.
56
+
Used to configure the Maven coordinates of the JAR artifact and repository credentials when using Maven repository as installation source.
0 commit comments