mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
5e3eceb0d6
Updated windows installer package generation with launch UI after install remove older version remove wiretrustee added install and uninstall scripts Updated brew cask: run installer script to start daemon Daemon conflicts with wiretrustee on brew Removed migrate check on non-root commands like status CLI CMD is now going to stdout
39 lines
1.3 KiB
Cheetah
39 lines
1.3 KiB
Cheetah
{{ $projectName := env.Getenv "PROJECT" }}{{ $amdFilePath := env.Getenv "AMD" }}{{ $armFilePath := env.Getenv "ARM" }}
|
|
{{ $amdURL := env.Getenv "AMD_URL" }}{{ $armURL := env.Getenv "ARM_URL" }}
|
|
{{ $amdFile := filepath.Base $amdFilePath }}{{ $armFile := filepath.Base $armFilePath }}{{ $amdFileBytes := file.Read $amdFilePath }}
|
|
{{ $armFileBytes := file.Read $armFilePath }}# Netbird's UI Client Cask Formula
|
|
cask "{{ $projectName }}" do
|
|
version "{{ env.Getenv "VERSION" }}"
|
|
|
|
if Hardware::CPU.intel?
|
|
url "{{ $amdURL }}"
|
|
sha256 "{{ crypto.SHA256 $amdFileBytes }}"
|
|
app "netbird_ui_darwin_amd64", target: "Netbird UI.app"
|
|
else
|
|
url "{{ $armURL }}"
|
|
sha256 "{{ crypto.SHA256 $armFileBytes }}"
|
|
app "netbird_ui_darwin_arm64", target: "Netbird UI.app"
|
|
end
|
|
|
|
depends_on formula: "netbird"
|
|
|
|
postflight do
|
|
set_permissions "/Applications/Netbird UI.app/installer.sh", '0755'
|
|
set_permissions "/Applications/Netbird UI.app/uninstaller.sh", '0755'
|
|
end
|
|
|
|
postflight do
|
|
system_command "#{appdir}/Netbird UI.app/installer.sh",
|
|
args: ["#{version}"],
|
|
sudo: true
|
|
end
|
|
|
|
uninstall_preflight do
|
|
system_command "#{appdir}/Netbird UI.app/uninstaller.sh",
|
|
sudo: false
|
|
end
|
|
|
|
name "Netbird UI"
|
|
desc "Netbird UI Client"
|
|
homepage "https://www.netbird.io/"
|
|
end |