10 lines
373 B
YAML
10 lines
373 B
YAML
---
|
|
|
|
# Display the tasks that still need to be done manually
|
|
- name: Add intro to conclusion
|
|
set_fact:
|
|
jenkins_post_install: "{{ [ 'For host ' + ansible_fqdn + ', please check :', '- SSH public key : ' + jenkins_ssh_public_key.content|b64decode|trim ] + jenkins_post_install|default([]) }}"
|
|
|
|
- name: Please check the following
|
|
debug:
|
|
var: jenkins_post_install
|