From 245a8444df46e65e7c963ea900a69303b0bb6094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Fri, 17 Jul 2026 08:19:27 +0200 Subject: [PATCH] added tty printout ip --- playbooks/linux/ubuntu-server/deploy_basics.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/playbooks/linux/ubuntu-server/deploy_basics.yml b/playbooks/linux/ubuntu-server/deploy_basics.yml index 365d220..d750fd3 100644 --- a/playbooks/linux/ubuntu-server/deploy_basics.yml +++ b/playbooks/linux/ubuntu-server/deploy_basics.yml @@ -44,4 +44,16 @@ when: neofetch_install is failed become: true +- name: Setup tty IP display + hosts: all + gather_facts: true + become: true + + tasks: + - name: Write to /etc/issue + ansible.builtin.lineinfile: + path: /etc/issue + line: 'eth0: \4{eth0} | eth1: \4{eth1}' + + # This file was written by Ebbe Baß (umpi) - ebbe@ping-mee.de \ No newline at end of file