From 2e67b3c433799e2c0cad32c0b19e256ac1f25e98 Mon Sep 17 00:00:00 2001 From: f0reachARR Date: Wed, 30 Oct 2024 22:05:22 +0900 Subject: [PATCH] Add Foxglove studio --- ansible/roles/foxglove/tasks/main.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ansible/roles/foxglove/tasks/main.yaml diff --git a/ansible/roles/foxglove/tasks/main.yaml b/ansible/roles/foxglove/tasks/main.yaml new file mode 100644 index 00000000000..7af2030c2f0 --- /dev/null +++ b/ansible/roles/foxglove/tasks/main.yaml @@ -0,0 +1,10 @@ +- name: Install Foxglove Studio + ansible.builtin.apt: + deb: https://get.foxglove.dev/desktop/latest/foxglove-studio-2.15.1-linux-amd64.deb + +- name: Update Foxglove Studio + ansible.builtin.apt: + name: + - foxglove-studio + state: latest + update_cache: true