diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-12-21 23:15:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 23:15:24 +0300 |
commit | b9bfe406d211ce5645a165a73b72048e9ea9e88e (patch) | |
tree | 9ff6ce0a2872cd0930c46b2963fe3fce6537af06 /src/nix/install.sh | |
parent | 48678001d1e910477390c475165564a38936b058 (diff) |
Update GPG_KEY_SERVERS: Remove `:80` from Ubuntu Keyserver (#354)
* Update GPG_KEY_SERVERS: Remove `:80` from Ubuntu Keyserver
* Fix ruby tests
Diffstat (limited to 'src/nix/install.sh')
-rwxr-xr-x | src/nix/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/install.sh b/src/nix/install.sh index 6141d7e..dcddcfd 100755 --- a/src/nix/install.sh +++ b/src/nix/install.sh @@ -14,7 +14,7 @@ USERNAME="${USERNAME:-"${_REMOTE_USER:-"automatic"}"}" # Nix keys for securly verifying installer download signature per https://nixos.org/download.html#nix-verify-installation NIX_GPG_KEYS="B541D55301270E0BCF15CA5D8170B4726D7198DE" -GPG_KEY_SERVERS="keyserver hkp://keyserver.ubuntu.com:80 +GPG_KEY_SERVERS="keyserver hkp://keyserver.ubuntu.com keyserver hkps://keys.openpgp.org keyserver hkp://keyserver.pgp.com" |