From 753fe90b49dc0cd0525af0b2f040ed59b2460e76 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Wed, 18 Feb 2026 20:44:18 -0800 Subject: [PATCH] Fix bash path for NixOS in ringtail playbook NixOS doesn't have /bin/bash. Use /run/current-system/sw/bin/bash which is the stable PATH-resolved location on NixOS. Co-Authored-By: Claude Opus 4.6 --- ansible/playbooks/ringtail.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/playbooks/ringtail.yml b/ansible/playbooks/ringtail.yml index 444bd1b..74c4f54 100644 --- a/ansible/playbooks/ringtail.yml +++ b/ansible/playbooks/ringtail.yml @@ -99,7 +99,7 @@ --namespace=1password \ --from-literal=1password-credentials.json='{{ _op_credentials.stdout }}' \ --dry-run=client -o yaml | k3s kubectl apply -f - - executable: /bin/bash + executable: /run/current-system/sw/bin/bash changed_when: true no_log: true @@ -111,6 +111,6 @@ --namespace=1password \ --from-literal=token={{ _op_token.stdout }} \ --dry-run=client -o yaml | k3s kubectl apply -f - - executable: /bin/bash + executable: /run/current-system/sw/bin/bash changed_when: true no_log: true