mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
10 lines
298 B
YAML
10 lines
298 B
YAML
|
- hosts: odroid_cluster
|
||
|
name: Run script
|
||
|
become: true
|
||
|
gather_facts: true
|
||
|
tasks:
|
||
|
- name: Reconfigure logo
|
||
|
ansible.builtin.lineinfile:
|
||
|
path: /etc/update-motd.d/10-armbian-header
|
||
|
regexp: "(^#|^)TERM="
|
||
|
line: "TERM=linux toilet -f standard -F metal $(hostname)"
|