blob: f064b14ca4384a2b3e105cc78977f1b527c208fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''Gentoo-keys is a gpg key manager for managing
gentoo's gpg-signing keys. It is these keys that are
used to verify and validate release media, etc..
This gkeys-gpg command is a wrapper to gnupg's gpg command
which uses the gentoo-keys keyring system to control the
keydirs and keyrings visible to gpg
Distributed under the terms of the GNU General Public License v2
Copyright:
(c) 2011 Brian Dolbec
Distributed under the terms of the GNU General Public License v2
Author(s):
Brian Dolbec <dolsen@gentoo.org>
'''
from __future__ import print_function
from gkeysgpg.cli import Main
import os
import sys
if '--verify' not in sys.argv:
# we are not verifying now, just call out to the normal
# gpg with args exactly as we were called with
sys.argv[0] = '/usr/bin/gpg'
os.execvp('/usr/bin/gpg', sys.argv)
sys.exit(1)
# This block ensures that ^C interrupts are handled quietly.
try:
import signal
def exithandler(signum,frame):
signal.signal(signal.SIGINT, signal.SIG_IGN)
signal.signal(signal.SIGTERM, signal.SIG_IGN)
print()
sys.exit(1)
signal.signal(signal.SIGINT, exithandler)
signal.signal(signal.SIGTERM, exithandler)
signal.signal(signal.SIGPIPE, signal.SIG_DFL)
except KeyboardInterrupt:
print()
sys.exit(1)
root = None
if 'ROOT' in os.environ:
root = os.environ['ROOT']
main = Main(root=root)
returncode = main()
sys.exit(returncode)
|