From 4783067ec13e5f281a078e8d975935bb2ad52c25 Mon Sep 17 00:00:00 2001 From: Wendell Jones Date: Fri, 23 May 2025 07:47:09 -0400 Subject: [PATCH] Update beszel install playbook --- beszel_install.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/beszel_install.yaml b/beszel_install.yaml index 2f4c417..0365774 100644 --- a/beszel_install.yaml +++ b/beszel_install.yaml @@ -2,7 +2,13 @@ - hosts: debianhosts tasks: - name: Install linux beszel agent - command: curl -sL https://get.beszel.dev -o /tmp/install-agent.sh && chmod +x /tmp/install-agent.sh && /tmp/install-agent.sh -p 45876 -k "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEhA2xm3yiEqzi5dn8UerbbhZTkU538O1g1KF2d7LefT" + command: cd /tmp + - name: Get beszel agent install script + command: curl -sL https://get.beszel.dev -o /tmp/install-agent.sh + - name: Setup beszel agent install script + command: chmod +x /tmp/install-agent.sh + - name: Execute beszel agent install script + command: /tmp/install-agent.sh -p 45876 -k "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEhA2xm3yiEqzi5dn8UerbbhZTkU538O1g1KF2d7LefT" - name: Add beszel agent key command: echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEhA2xm3yiEqzi5dn8UerbbhZTkU538O1g1KF2d7LefT" >> /root/.ssh/authorized_keys