aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* gkeys/seedhandler.py: Fix build_gkeydict()Brian Dolbec2015-05-301-2/+5
|
* gkeys/seed.py: Replace codecs usage with unicode()Brian Dolbec2015-05-301-1/+3
| | | | | | Add a noop for an empty kwargs[key]. jgjhgj
* gkeys-ldap: Remove keyid/longkeyid from ldap search infoBrian Dolbec2015-05-302-42/+5
|
* gkeys/gkey.py: Fix typo in @licenseBrian Dolbec2015-05-301-1/+1
|
* gkeys: Use snakeoil's demandload where appropriateBrian Dolbec2015-05-304-13/+31
|
* gkeys/actions.py: Refactor installkey to refresh keys that are already ↵Brian Dolbec2015-05-301-32/+46
| | | | installed and unchanged
* gkeys/actions.py: Remove unused keyring_dir assignmentBrian Dolbec2015-05-301-1/+0
|
* gkeys/seedhandler.py: Make key_search accept args as a dictionary or ↵Brian Dolbec2015-05-301-3/+13
| | | | argsparse object
* gkeys/config.py: Correctly set default keyring dir name to keyringsBrian Dolbec2015-05-301-1/+1
|
* gkeys/config.py: Remove no longer used MAPSEEDS constantBrian Dolbec2015-05-301-3/+0
|
* gkeys: Remove gpgsearch option from list-key actionBrian Dolbec2015-05-302-39/+11
| | | | | The default action for list-key is to now list all keys found in the keydir. Regardless if they are in the db's seed file for that keydir.
* gkeys/actionspy: Fix grammar in the confirmation input messageBrian Dolbec2015-05-301-1/+1
|
* gkeys: Fix list-key action to list all keys found in the keydir unless -f is ↵Brian Dolbec2015-05-302-5/+9
| | | | | | | passed in This now ignores the keys listed in the db's seed file and lists all keys seen by gpg. Except when -f, --fingerprint is an argument, then it lists only that key.
* gkeys/lib.py: Fix logger message to show the correct functionBrian Dolbec2015-05-301-1/+1
|
* gkeys/seedhandler.py: Add space removal for fingerprints in build_gkeydict()Brian Dolbec2015-05-301-0/+2
|
* gkeys: remove-key refactoringBrian Dolbec2015-04-202-20/+42
| | | | | Update the remove-key action to use the proper installed db. Populate the del_key, del_keydir functions in lib.py
* gkeyldap/actions.py: Ignore 'undefined' for the keyid,longkeyid fields.Brian Dolbec2015-03-231-1/+1
| | | Interim change until the keyid's and longkeyid's are dropped from LDAP.
* gkeys/checks.py: Downgrade the logging to warn from errorBrian Dolbec2015-03-181-3/+3
| | | | logging.error also prints to the screen which we don't want in this case. The logging.warn is fine for these errors since they are already shown in a formatted output.
* gkeys/checks.py: Fix the expiry warning summary not detecting anyBrian Dolbec2015-03-172-4/+7
| | | Add logger messages for expiry errors/warnings
* gkeyldap/actions.py: Comment out longkeyid checkBrian Dolbec2015-03-111-6/+6
| | | | The keyid and longkeyid's are being removed soon. With the fix-fp.sh script removing them, There are more and more false positives for errors.
* gkeys-gen: Improve output by stating the error that occurredBrian Dolbec2015-03-101-2/+5
| | | The debug output in the log is not obvious, so stating it as well as the log file should help.
* gkeys: Fix setting deafault location of homedirBrian Dolbec2015-03-102-3/+5
| | | | Pass in the os.expanduser('~') setting to the config parser. Comment out the gkeys.conf homedir setting so it can use the passed in default.
* gkeys/base.py: Fix expanduser error reported by K_FBrian Dolbec2015-03-071-2/+2
|
* gkeys/seed.py: Revert the use of codecs to open the seed fileBrian Dolbec2015-03-061-2/+2
| | | It was causing tracebacks in python-2.7 running in vulture.gentoo.org
* update-seeds: Add keychain supportBrian Dolbec2015-03-062-0/+4
|
* update-seeds.sh: Fix capability to push the log file to another urlBrian Dolbec2015-03-064-1/+13
|
* gkeys/actions.py: _verify() Properly report a failed searchBrian Dolbec2015-02-111-3/+5
|
* gkeys/actions.py: Remove result from del list, it's not always definedBrian Dolbec2015-02-111-1/+1
|
* gkeys/action_map.py: Add uid to possible optionsBrian Dolbec2015-02-111-1/+1
|
* gkeys/actions.py: separate the message info substitutionBrian Dolbec2015-01-301-3/+4
| | | | | It is usually the result.username that gives the error. This tries to trap it and keep going.
* gkeys: Fix verify -F logic for inline sigsBrian Dolbec2015-01-302-55/+62
|
* gkeys: Wrap all strings which have %s with _unicode() to prevent decode errorsBrian Dolbec2015-01-302-108/+172
| | | | Hopefully this will stop the intermittent python-2.7 UnicodeDecodeError that some people get during string substitution.
* gkeys-ldap: Add saving the logfilename to know which log file to pushBrian Dolbec2015-01-304-2/+9
| | | | | | Add uploading the log file to my dev space for public access. cgh
* gkeys-ldap: Add version info in cli.py, update versionBrian Dolbec2015-01-302-1/+3
|
* gkeys-ldap: Update update-seeds.sh and config for new gkey-seeds repoBrian Dolbec2015-01-302-7/+36
| | | | Update update-seeds.conf.
* gkeys/actions.py: Trap UnicodeDecodeError for installkey()Brian Dolbec2015-01-301-4/+11
| | | | Add debug logging for the error.
* gkeys/base.py: Remove no longer used codeBrian Dolbec2015-01-301-2/+0
|
* logger location refactor bug 536314Brian Dolbec2015-01-303-6/+14
|
* gentoo-keys: Correctly define the OrderedDict'sBrian Dolbec2015-01-303-58/+58
|
* gkeys/actions.py: Partially update removekey()Brian Dolbec2015-01-082-10/+29
| | | | | | The removal code is completely wrong if there are multiple keys installed in one keyring. Everything below my comments needs a complete re-do. Disabling the remove-key action until refactored.
* gkeys/seed.py: Rename search() to regex_search()Brian Dolbec2015-01-081-1/+1
|
* gkeys/seed.py: Update field_search() docstringBrian Dolbec2015-01-081-2/+4
|
* gkeys: Fix seed file loading, saving unicode issuesBrian Dolbec2015-01-083-25/+45
| | | | Fix unicode cli args issues.
* Revert "gkeys/base.py: Wrap all output with _unicode_decode()"Brian Dolbec2015-01-081-5/+4
| | | | This reverts commit d947f8fc4b5d91f1655e1f7770a0f94cbb6a52a9.
* Revert "gkeys: Finally fix all the unicode printing errors"Pavlos Ratis2015-01-082-16/+14
| | | | | This reverts commit b7f9364cb0952f2e06f94299400d2f23b629553d. It totally broke py-3 comaptibility!
* Rename gkey-gen to gkeys-gen for consistency0.1_rc1Pavlos Ratis2015-01-084-5/+5
|
* add checks to fetch-seed in case of missing categoryPavlos Ratis2015-01-082-3/+4
| | | | | Added a check about categories in fetch-seed action because it failed when the command ran without a category
* gkeys/doc/gkeys.1: Remove man page in favor of the generated oneBrian Dolbec2015-01-071-97/+0
| | | This man page was used as the base to create the templates and subsequent generation code.
* gkeys: Finally fix all the unicode printing errorsBrian Dolbec2015-01-072-14/+16
|
* gkeys, gkeys-gen: Add --version optionBrian Dolbec2015-01-077-3/+12
|