* [gentoo-commits] proj/gentoo-keys:gsoc-2016 commit in: gkeys-gen/gkeygen/
@ 2016-12-24 9:41 99% Brian Dolbec
0 siblings, 0 replies; 1+ results
From: Brian Dolbec @ 2016-12-24 9:41 UTC (permalink / raw
To: gentoo-commits
commit: 6b82f9204cb0522b6393fe673d7c4ed4617183c9
Author: aeroniero33 <justthisthing <AT> gmail <DOT> com>
AuthorDate: Fri Jun 17 13:56:24 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Dec 24 09:40:26 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=6b82f920
Made the default GPG config file overridable
<rebase edit> Remove trailing whitespace </edit Brian Dolbec>
gkeys-gen/gkeygen/actions.py | 22 ++++++++++++++++------
1 file changed, 16 insertions(+), 6 deletions(-)
diff --git a/gkeys-gen/gkeygen/actions.py b/gkeys-gen/gkeygen/actions.py
index aaedcd1..403c779 100644
--- a/gkeys-gen/gkeygen/actions.py
+++ b/gkeys-gen/gkeygen/actions.py
@@ -127,6 +127,21 @@ class Actions(object):
self.output = output
self.logger = logger
+ def configure_config_file(self,args, gpghome):
+ '''Creates the config file'''
+ newgpgconfpath = os.path.join(gpghome, 'gpg.conf')
+ defaultpath = '/usr/share/gnupg/gpg-conf.skel'
+ file_exists = False
+ while not file_exists:
+ skelconfpath = py_input("Path of default gpg configuration file to use (default: %s) " %defaultpath)
+ if len(skelconfpath) <= 0:
+ skelconfpath = defaultpath
+ file_exists = os.path.exists(skelconfpath)
+ shutil.copy(skelconfpath, newgpgconfpath)
+ with open(newgpgconfpath, 'a') as conf:
+ for line in urlopen(self.config.get_key('gpg-urls', args.spec)):
+ conf.write(_unicode(line.decode('utf-8')))
+
def genkey(self, args):
'''Generate a gpg key using a spec file'''
@@ -158,12 +173,7 @@ class Actions(object):
self.output(["\n* Creating gpg folder at %s" % gpghome_full_path])
ensure_dirs(gpghome)
# Copy default gpg-conf.skel and append glep63 requirements
- self.output(["* Creating gpg.conf file at %s" % gpghome_full_path])
- newgpgconfpath = os.path.join(gpghome, 'gpg.conf')
- shutil.copy('/usr/share/gnupg/gpg-conf.skel', newgpgconfpath)
- with open(newgpgconfpath, 'a') as conf:
- for line in urlopen(self.config.get_key('gpg-urls', args.spec)):
- conf.write(_unicode(line.decode('utf-8')))
+ self.configure_config_file(args, gpghome)
# Key generation
ctx = gpgme.Context()
self.logger.info("MAIN: _action_genkey: Generating GPG key...")
^ permalink raw reply related [relevance 99%]
Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2016-12-24 9:41 99% [gentoo-commits] proj/gentoo-keys:gsoc-2016 commit in: gkeys-gen/gkeygen/ Brian Dolbec
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox