Skip to content

Commit b275037

Browse files
committed
Consistently refer to the Quickstart.jar as "quickstart" to avoid confusion with a distribution package.
1 parent 90f241c commit b275037

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tasks/download/nexus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
cache_valid_time: 3600
1313
when: ansible_pkg_mgr == 'apt'
1414

15-
- name: Download AEM artifact from Nexus.
15+
- name: Download AEM quickstart artifact from Nexus.
1616
maven_artifact:
1717
group_id: "{{ item.group_id }}"
1818
artifact_id: "{{ item.artifact_id }}"

tasks/download/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name: "{{ aem_package }}"
44
state: present
55

6-
- name: Copy AEM jar to download folder.
6+
- name: Copy AEM quickstart to download folder.
77
copy:
88
src: "{{ aem_package_home }}/{{ aem_quickstart_name }}"
99
dest: "{{ aem_download_path }}"

tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
dest: "{{ aem_home }}/license.properties"
2323
owner: "{{ aem_user }}"
2424

25-
- name: Check whether AEM package was already downloaded.
25+
- name: Check whether AEM quickstart was already downloaded.
2626
stat:
2727
path: "{{ aem_download_path }}/{{ aem_quickstart_name }}"
2828
register: aem_quickstart_file
2929

30-
- name: Download AEM package.
30+
- name: Download AEM quickstart.
3131
include: "download/{{ aem_install_source }}.yml"
3232
when: not aem_quickstart_file.stat.exists or
3333
(aem_quickstart_sha1 is defined and
@@ -38,7 +38,7 @@
3838
args:
3939
creates: "{{ aem_home }}/crx-quickstart/app/cq-quickstart-{{ aem_version }}-standalone-quickstart.jar"
4040

41-
- name: Remove downloaded AEM package.
41+
- name: Remove downloaded AEM quickstart.
4242
file:
4343
path: "{{ aem_download_path }}/{{ aem_quickstart_name }}"
4444
state: absent

0 commit comments

Comments
 (0)