Add config option for pgp key fetching

This commit is contained in:
morganamilo 2018-05-31 16:36:36 +01:00
parent 796a84bd1a
commit 682040319e
No known key found for this signature in database
GPG key ID: 6FE9E7996B0B082E
3 changed files with 11 additions and 3 deletions

4
cmd.go
View file

@ -300,6 +300,10 @@ func handleConfig(option, value string) bool {
config.Provides = true
case "noprovides":
config.Provides = false
case "pgpfetch":
config.PGPFetch = true
case "nopgpfetch":
config.PGPFetch = false
case "a", "aur":
mode = ModeAUR
case "repo":

View file

@ -63,6 +63,7 @@ type Configuration struct {
CleanAfter bool `json:"cleanAfter"`
GitClone bool `json:"gitclone"`
Provides bool `json:"provides"`
PGPFetch bool `json:"pgpfetch"`
}
var version = "5.688"
@ -146,6 +147,7 @@ func defaultSettings(config *Configuration) {
config.MakepkgBin = "makepkg"
config.NoConfirm = false
config.PacmanBin = "pacman"
config.PGPFetch = true
config.PacmanConf = "/etc/pacman.conf"
config.GpgFlags = ""
config.MFlags = ""

View file

@ -183,9 +183,11 @@ func install(parser *arguments) error {
return err
}
err = checkPgpKeys(do.Aur, do.Bases, srcinfosStale)
if err != nil {
return err
if config.PGPFetch {
err = checkPgpKeys(do.Aur, do.Bases, srcinfosStale)
if err != nil {
return err
}
}
}