[projects/pld-builder.new] Auto restart gpg-agent.
arekm
arekm at pld-linux.org
Mon Feb 10 18:34:48 CET 2025
commit 7c0dc0b8fd65492c90614cf879f82a661192812d
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Mon Feb 10 18:10:21 2025 +0100
Auto restart gpg-agent.
PLD_Builder/gpg.py | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
---
diff --git a/PLD_Builder/gpg.py b/PLD_Builder/gpg.py
index 942cfb5..f9a5b2b 100644
--- a/PLD_Builder/gpg.py
+++ b/PLD_Builder/gpg.py
@@ -87,6 +87,15 @@ def sign(buf):
raise
if len(d_stderr):
- log.error("gpg: %s" % util.to_str(d_stderr))
+ gerr = util.to_str(d_stderr)
+ log.error("gpg: %s" % gerr)
+
+ if gerr.find('gpgconf --kill all') >= 0:
+ try:
+ cmd = [ 'gpgconf', '--kill', 'all' ]
+ subprocess.Popen(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, close_fds=True)
+ except OSError as e:
+ log.error("gpgconf --kill all failed: %s" % e)
+
return d_stdout
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/projects/pld-builder.new.git/commitdiff/7c0dc0b8fd65492c90614cf879f82a661192812d
More information about the pld-cvs-commit
mailing list