From b13b69e5b8ef2229e9f3c92ec09fa6eab8e622fe Mon Sep 17 00:00:00 2001 From: Gerald Pinder <4626052+gmpinder@users.noreply.github.com> Date: Sat, 23 Sep 2023 15:29:05 -0400 Subject: [PATCH] Install tailscale --- recipe-desktop.yml | 2 ++ recipe-framework-13.yml | 2 ++ scripts/install-codelldb.sh | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/recipe-desktop.yml b/recipe-desktop.yml index ff120e4..0675836 100644 --- a/recipe-desktop.yml +++ b/recipe-desktop.yml @@ -22,6 +22,7 @@ rpm: repos: - https://pkg.earthly.dev/earthly.repo - https://copr.fedorainfracloud.org/coprs/varlad/helix/repo/fedora-%FEDORA_VERSION%/varlad-helix-fedora-%FEDORA_VERSION%.repo + - https://pkgs.tailscale.com/stable/fedora/%FEDORA_VERSION%/tailscale.repo install: # Needed for yafti (the first boot installer). Remove if you're not using yafti. - python3-pip @@ -45,6 +46,7 @@ rpm: - neovim - ripgrep - helix + - tailscale remove: # Remove the native firefox (from Fedora) in favor of the Flatpak. - firefox diff --git a/recipe-framework-13.yml b/recipe-framework-13.yml index 3eaac8f..18545f0 100644 --- a/recipe-framework-13.yml +++ b/recipe-framework-13.yml @@ -22,6 +22,7 @@ rpm: repos: - https://pkg.earthly.dev/earthly.repo - https://copr.fedorainfracloud.org/coprs/varlad/helix/repo/fedora-%FEDORA_VERSION%/varlad-helix-fedora-%FEDORA_VERSION%.repo + - https://pkgs.tailscale.com/stable/fedora/%FEDORA_VERSION%/tailscale.repo install: # Needed for yafti (the first boot installer). Remove if you're not using yafti. - python3-pip @@ -49,6 +50,7 @@ rpm: - neovim - ripgrep - helix + - tailscale remove: # Remove the native firefox (from Fedora) in favor of the Flatpak. - firefox diff --git a/scripts/install-codelldb.sh b/scripts/install-codelldb.sh index 31bcb0b..00328cf 100644 --- a/scripts/install-codelldb.sh +++ b/scripts/install-codelldb.sh @@ -6,7 +6,7 @@ cd /usr/bin/ curl -L "https://github.com/vadimcn/vscode-lldb/releases/download/v1.7.0/codelldb-x86_64-linux.vsix" -o "codelldb-x86_64-linux.zip" -unzip "codelldb-x86_64-linux.zip" "extension/adapter/*" "extension/lldb/*" +unzip "codelldb-x86_64-linux.zip" "extension/adapter/*" "extension/lldb/*" > /dev/null rm -f "codelldb-x86_64-linux.zip"