ansible/playbooks/80_change_logo.yml

11 lines
321 B
YAML
Raw Normal View History

2022-12-14 02:23:34 +01:00
- hosts: odroid_cluster
name: Run script
become: true
2023-10-26 19:19:10 +02:00
gather_facts: no
2022-12-14 02:23:34 +01:00
tasks:
- name: Reconfigure logo
ansible.builtin.lineinfile:
path: /etc/update-motd.d/10-armbian-header
regexp: "(^#|^)TERM="
2023-10-24 00:11:12 +02:00
line: "TERM=linux toilet -f standard -F metal $(hostname)"
ignore_errors: yes