mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
a20a450ac4
* doc/examples/systemd-user/*.service: Add ExecReload directives to indicate the canonical way to reload the services. GnuPG recommends reloading the agent and dirmngr with "gpgconf --reload". if anyone is running them as systemd user services, they might ask them to reload in the systemd way, so teach systemd the right thing to do. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
12 lines
308 B
Desktop File
12 lines
308 B
Desktop File
[Unit]
|
|
Description=GnuPG cryptographic agent and passphrase cache
|
|
Documentation=man:gpg-agent(1)
|
|
Requires=gpg-agent.socket
|
|
After=gpg-agent.socket
|
|
## This is a socket-activated service:
|
|
RefuseManualStart=true
|
|
|
|
[Service]
|
|
ExecStart=/usr/bin/gpg-agent --supervised
|
|
ExecReload=/usr/bin/gpgconf --reload gpg-agent
|