Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposed keyserver changed to functional one #992

Merged
merged 1 commit into from
Nov 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To install aptly on Debian/Ubuntu, add new repository to ``/etc/apt/sources.list

And import key that is used to sign the release::

$ apt-key adv --keyserver pool.sks-keyservers.net --recv-keys ED75B5A4483DA07C
$ apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ED75B5A4483DA07C

After that you can install aptly as any other software package::

Expand Down
2 changes: 1 addition & 1 deletion pgp/gnupg.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (g *GpgVerifier) runGpgv(args []string, context string, showKeyTip bool) (*
keys[i] = string(result.MissingKeys[i])
}

fmt.Printf("gpg --no-default-keyring --keyring trustedkeys.gpg --keyserver pool.sks-keyservers.net --recv-keys %s\n\n",
fmt.Printf("gpg --no-default-keyring --keyring trustedkeys.gpg --keyserver keyserver.ubuntu.com --recv-keys %s\n\n",
strings.Join(keys, " "))

fmt.Printf("Sometimes keys are stored in repository root in file named Release.key, to import such key:\n\n")
Expand Down
2 changes: 1 addition & 1 deletion pgp/internal.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ func (g *GoVerifier) showImportKeyTip(signers []signatureResult) {
keys = append(keys, string(KeyFromUint64(signer.IssuerKeyID)))
}

fmt.Printf("gpg --no-default-keyring --keyring trustedkeys.gpg --keyserver pool.sks-keyservers.net --recv-keys %s\n\n",
fmt.Printf("gpg --no-default-keyring --keyring trustedkeys.gpg --keyserver keyserver.ubuntu.com --recv-keys %s\n\n",
strings.Join(keys, " "))

fmt.Printf("Sometimes keys are stored in repository root in file named Release.key, to import such key:\n\n")
Expand Down