10 lines
309 B
YAML
10 lines
309 B
YAML
---
|
|
- name: Ensure figlet is installed
|
|
ansible.builtin.package:
|
|
name: figlet
|
|
state: latest
|
|
|
|
- name: Ensure motd is configured using figlet
|
|
ansible.builtin.shell: |
|
|
figlet -f small "{{ FIGLET_NAME }}" | sed 's/[[:blank:]]*$//' | tee /etc/motd | tail -n 1 | grep -q -P '^$' || echo >> /etc/motd
|