mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-12 21:58: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
295 B
Desktop File
12 lines
295 B
Desktop File
[Unit]
|
|
Description=GnuPG network certificate management daemon
|
|
Documentation=man:dirmngr(8)
|
|
Requires=dirmngr.socket
|
|
After=dirmngr.socket
|
|
## This is a socket-activated service:
|
|
RefuseManualStart=true
|
|
|
|
[Service]
|
|
ExecStart=/usr/bin/dirmngr --supervised
|
|
ExecReload=/usr/bin/gpgconf --reload dirmngr
|