@@ -16,51 +16,61 @@ gpg_flags=(
16
16
)
17
17
18
18
pushd " $PROJECT_ROOT /dogfood/files/usr/share/keyrings"
19
+
20
+ # Ansible PPA signing key
21
+ curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x6125e2a8c77f2818fb7bd15b93c4a3fd7bb9c367" |
22
+ gpg " ${gpg_flags[@]} " --output=" ansible.gpg"
23
+
19
24
# Upstream Docker signing key
20
25
curl " ${curl_flags[@]} " " https://download.docker.com/linux/ubuntu/gpg" |
21
26
gpg " ${gpg_flags[@]} " --output=" docker.gpg"
22
27
23
- # Google Cloud signing key
24
- curl " ${curl_flags[@]} " " https://packages.cloud.google.com/apt/doc/apt-key.gpg" |
25
- gpg " ${gpg_flags[@]} " --output=" google-cloud.gpg"
28
+ # Fish signing key
29
+ curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x59fda1ce1b84b3fad89366c027557f056dc33ca5" |
30
+ gpg " ${gpg_flags[@]} " --output=" fish-shell.gpg"
31
+
32
+ # Git-Core signing key
33
+ curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xE1DD270288B4E6030699E45FA1715D88E1DF1F24" |
34
+ gpg " ${gpg_flags[@]} " --output=" git-core.gpg"
35
+
36
+ # GitHub CLI signing key
37
+ curl " ${curl_flags[@]} " " https://cli.github.com/packages/githubcli-archive-keyring.gpg" |
38
+ gpg " ${gpg_flags[@]} " --output=" github-cli.gpg"
26
39
27
40
# Google Linux Software repository signing key (Chrome)
28
41
curl " ${curl_flags[@]} " " https://dl.google.com/linux/linux_signing_key.pub" |
29
42
gpg " ${gpg_flags[@]} " --output=" google-chrome.gpg"
30
43
44
+ # Google Cloud signing key
45
+ curl " ${curl_flags[@]} " " https://packages.cloud.google.com/apt/doc/apt-key.gpg" |
46
+ gpg " ${gpg_flags[@]} " --output=" google-cloud.gpg"
47
+
48
+ # Hashicorp signing key
49
+ curl " ${curl_flags[@]} " " https://apt.releases.hashicorp.com/gpg" |
50
+ gpg " ${gpg_flags[@]} " --output=" hashicorp.gpg"
51
+
52
+ # Helix signing key
53
+ curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x27642b9fd7f1a161fc2524e3355a4fa515d7c855" |
54
+ gpg " ${gpg_flags[@]} " --output=" helix.gpg"
55
+
31
56
# Microsoft repository signing key (Edge)
32
57
curl " ${curl_flags[@]} " " https://packages.microsoft.com/keys/microsoft.asc" |
33
58
gpg " ${gpg_flags[@]} " --output=" microsoft.gpg"
34
59
35
- # Upstream PostgreSQL signing key
36
- curl " ${curl_flags[@]} " " https://www.postgresql.org/media/keys/ACCC4CF8.asc " |
37
- gpg " ${gpg_flags[@]} " --output=" postgresql .gpg"
60
+ # Neovim signing key
61
+ curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x9dbb0be9366964f134855e2255f96fcf8231b6dd " |
62
+ gpg " ${gpg_flags[@]} " --output=" neovim .gpg"
38
63
39
64
# NodeSource signing key
40
65
curl " ${curl_flags[@]} " " https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key" |
41
66
gpg " ${gpg_flags[@]} " --output=" nodesource.gpg"
42
67
68
+ # Upstream PostgreSQL signing key
69
+ curl " ${curl_flags[@]} " " https://www.postgresql.org/media/keys/ACCC4CF8.asc" |
70
+ gpg " ${gpg_flags[@]} " --output=" postgresql.gpg"
71
+
43
72
# Yarnpkg signing key
44
73
curl " ${curl_flags[@]} " " https://dl.yarnpkg.com/debian/pubkey.gpg" |
45
74
gpg " ${gpg_flags[@]} " --output=" yarnpkg.gpg"
46
75
47
- # Ansible PPA signing key
48
- curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x6125e2a8c77f2818fb7bd15b93c4a3fd7bb9c367" |
49
- gpg " ${gpg_flags[@]} " --output=" ansible.gpg"
50
-
51
- # Neovim signing key
52
- curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x9dbb0be9366964f134855e2255f96fcf8231b6dd" |
53
- gpg " ${gpg_flags[@]} " --output=" neovim.gpg"
54
-
55
- # Hashicorp signing key
56
- curl " ${curl_flags[@]} " " https://apt.releases.hashicorp.com/gpg" |
57
- gpg " ${gpg_flags[@]} " --output=" hashicorp.gpg"
58
-
59
- # GitHub CLI signing key
60
- curl " ${curl_flags[@]} " " https://cli.github.com/packages/githubcli-archive-keyring.gpg" |
61
- gpg " ${gpg_flags[@]} " --output=" github-cli.gpg"
62
-
63
- # Git-Core signing key
64
- curl " ${curl_flags[@]} " " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xE1DD270288B4E6030699E45FA1715D88E1DF1F24" |
65
- gpg " ${gpg_flags[@]} " --output=" git-core.gpg"
66
76
popd
0 commit comments