Skip to content

Commit

Permalink
aixPB: name debug: tasks to satisfy linter (adoptium#2053)
Browse files Browse the repository at this point in the history
unixPB: name debug: tasks to satisfy linter

Co-authored-by: Stewart X Addison <[email protected]>
  • Loading branch information
aixtools and sxa authored Mar 19, 2021
1 parent 343d515 commit 334ed27
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
3 changes: 2 additions & 1 deletion ansible/playbooks/AdoptOpenJDK_AIX_Playbook/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@
register: freemarker
tags: freemarker

- debug:
- name: "freemarker.jar found, skipping download"
debug:
msg: "freemarker.jar found, skipping download"
when: not freemarker.stat.exists
tags: freemarker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
register: ant
tags: ant

- debug:
- name: "Ant installed, skipping download and installation"
debug:
msg: "Ant installed, skipping download and installation"
when: ant.stat.islnk is defined
tags: ant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
register: antcontrib
tags: ant-contrib

- debug:
- name: "ant-contrib.jar installed, skipping download"
debug:
msg: "ant-contrib.jar installed, skipping download"
when: not antcontrib.stat.exists
tags: ant-contrib
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
register: xlc13
tags: xlc13

- debug:
- name: "xlc13 installed, skipping download and installation"
debug:
msg: "xlc13 installed, skipping download and installation"
when: xlc13.stat.islnk is defined
tags: xlc13
Expand All @@ -27,7 +28,8 @@
when: xlc13.stat.islnk is not defined
tags: xlc13

- debug: msg='Erorrs from the previous installp command normal'
- name: 'Errors from the previous installp command normal'
debug: msg='Errors from the previous installp command normal'
when: xlc13.stat.islnk is not defined
tags: xlc13

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
register: xlc16
tags: xlc16

- name: Announce skip of download and installation
- name: "xlc16 installed, skipping download and installation"
debug:
msg: "xlc16 installed, skipping download and installation"
when: xlc16.stat.exists and xlc16.stat.isdir
Expand All @@ -30,8 +30,10 @@
ignore_errors: yes
when: _vendor_copied.failed is defined and _vendor_copied.failed == false

- debug: msg='Error messages from the installp command can be ignored.'
when: _installp is defined
- name: 'Errors from the previous installp command can be ignored'
debug: msg='Errors from the previous installp command can be ignored'
when: xlc16.stat.islnk is not defined
tags: xlc16

- name: Clean XLC16 tmp files
file:
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 334ed27

Please sign in to comment.