All checks were successful
Ansible Code Pipeline / Ansible-Development-Pipeline (push) Successful in 15s
17 lines
497 B
YAML
17 lines
497 B
YAML
---
|
|
- name: Format uptime using Jinja
|
|
ansible.builtin.set_fact:
|
|
motd_uptime_formatted: |
|
|
{% if 'day' in motd_host_uptime %}
|
|
{{ motd_host_uptime | regex_replace(motd_day_filter, motd_day_filter_repl) }}
|
|
{% else %}
|
|
{{ motd_host_uptime | regex_replace(motd_nonday_filter, motd_nonday_filter_repl) }}
|
|
{% endif %}
|
|
|
|
- name: Update MOTD
|
|
ansible.builtin.template:
|
|
src: templates/motd.j2
|
|
dest: "{{ motd_motd_file }}"
|
|
mode: "0644"
|
|
changed_when: false
|