martinholovsky / Securix-Linux

Securix Main repository including installer and controll scripts
https://www.securix.org
GNU General Public License v3.0
14 stars 8 forks source link

option to disable or drop gpg parameter -quiet #75

Closed adrelanos closed 9 years ago

adrelanos commented 9 years ago

Do you want to keep gpg using -quiet or can we just drop it?

I prefer more verbose output, especially for the security critical parts.


In case you want to keep it, we could easily make it configurable... Like this...

New variable:

GPG_EXTRA_OPTS=${GPG_EXTRA_OPTS:-"-quiet"}

Then instead of

gpg -quiet --homedir /etc/portage/gpg --import gentoo-gpg.pub

this could be used

gpg $GPG_EXTRA_OPTS --homedir /etc/portage/gpg --import gentoo-gpg.pub

(No quotes, so variable can expand into multiple options.)


I could provide a pull request for either way. But if you just like to commit it yourself, that would safe me some work. Not too eager to do the new-branch/push/pull-request way. Just committing to master luxury for project owner is faster. So I am fine either way.