Chris Hammer b2300e8ba8
All checks were successful
continuous-integration/drone/push Build is passing
Add vars for replace filter
2024-03-02 16:30:55 -05:00

25 lines
618 B
YAML

---
- name: Format uptime containing days
ansible.builtin.set_fact:
uptime_formatted: "{{ motd_host_uptime | regex_replace(motd_day_filter, motd_day_filter_repl) }}"
when:
- "'day' in motd_host_uptime"
- name: Format uptime not containing days
ansible.builtin.set_fact:
uptime_formatted: "{{ motd_host_uptime | regex_replace(motd_nonday_filter, motd_nonday_filter_repl) }}"
when:
- "'day' not in motd_host_uptime"
- name: Update MOTD
ansible.builtin.template:
src : templates/motd.j2
dest : "{{ motd_motd_file }}"
mode : "0644"
changed_when : false
...