From a9f477930811bbc6b85f75cfe9dce722f10f3bbf Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Mon, 20 Jan 2025 11:21:08 +0100 Subject: [PATCH] fix: update Chrome executable path and enhance Tailscale service task description --- .bashrc | 2 +- config/ansible/tasks/tailscale.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bashrc b/.bashrc index 3ca71f0..dbb900f 100644 --- a/.bashrc +++ b/.bashrc @@ -85,7 +85,7 @@ if [ -d "/home/menno/Projects/Work" ]; then fi # Flutter Web and other tools that require Chrome -export CHROME_EXECUTABLE=$(which brave) +export CHROME_EXECUTABLE=$(which brave-browser) # 1Password Source Plugin (Assuming bash compatibility) if [ -f /home/menno/.config/op/plugins.sh ]; then diff --git a/config/ansible/tasks/tailscale.yml b/config/ansible/tasks/tailscale.yml index 3be1ae6..0c1f4fa 100644 --- a/config/ansible/tasks/tailscale.yml +++ b/config/ansible/tasks/tailscale.yml @@ -21,7 +21,7 @@ changed_when: false failed_when: false -- name: Start tailscaled service +- name: Enable and start Tailscale service ansible.builtin.systemd: name: tailscaled state: started @@ -33,4 +33,4 @@ ansible.builtin.debug: msg: "Please authenticate Tailscale by running: sudo tailscale up --operator=$USER" when: tailscale_status.rc != 0 - +