From a8403ea3423b319d13057c484347b8ce89cf9ac3 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Sun, 23 Nov 2025 13:01:56 -0700 Subject: [PATCH] hosts: Provide FQDNames in ansible_host to avoid collisions. ~kessel~ sometimes means ~kessel.lan~ on Wi-Fi. --- README.org | 5 +++++ hosts | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/README.org b/README.org index 1ecc2ab..5d57e0c 100644 --- a/README.org +++ b/README.org @@ -2623,16 +2623,21 @@ all: ansible_host: 159.65.75.60 ansible_become_password: "{{ become_droplet }}" anoat: + ansible_host: anoat.birchwood.private ansible_become_password: "{{ become_anoat }}" malastare: + ansible_host: malastare.birchwood.private ansible_become_password: "{{ become_malastare }}" # Campus kessel: + ansible_host: kessel.birchwood.private ansible_become_password: "{{ become_kessel }}" dantooine: + ansible_host: dantooine.birchwood.private ansible_become_password: "{{ become_dantooine }}" # Notebooks endor: + ansible_host: endor.birchwood.private ansible_become_password: "{{ become_endor }}" sullust: ansible_host: 127.0.0.1 diff --git a/hosts b/hosts index afecefe..45cb41e 100644 --- a/hosts +++ b/hosts @@ -8,16 +8,21 @@ all: ansible_host: 159.65.75.60 ansible_become_password: "{{ become_droplet }}" anoat: + ansible_host: anoat.birchwood.private ansible_become_password: "{{ become_anoat }}" malastare: + ansible_host: malastare.birchwood.private ansible_become_password: "{{ become_malastare }}" # Campus kessel: + ansible_host: kessel.birchwood.private ansible_become_password: "{{ become_kessel }}" dantooine: + ansible_host: dantooine.birchwood.private ansible_become_password: "{{ become_dantooine }}" # Notebooks endor: + ansible_host: endor.birchwood.private ansible_become_password: "{{ become_endor }}" sullust: ansible_host: 127.0.0.1 -- 2.25.1