diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2017-08-07 10:11:51 +0200 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2017-08-07 14:01:18 +0200 |
commit | 407da18254dfebcacfaee16952ef0b617b1626ea (patch) | |
tree | bcbdcfea3f7bd276774f726f01ccfe29d671a267 /doc/examples | |
parent | tests: Do not run all tests unless in maintainer mode. (diff) | |
download | gnupg2-407da18254dfebcacfaee16952ef0b617b1626ea.tar.xz gnupg2-407da18254dfebcacfaee16952ef0b617b1626ea.zip |
systemd-user: Drop RefuseManualStart=true.
* doc/examples/systemd-user/*.service: drop RefuseManualStart=true
--
These user services can be safely started manually as long as at least
their primary sockets are available. They'll just start with nothing
to do, which should be fine.
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/systemd-user/dirmngr.service | 2 | ||||
-rw-r--r-- | doc/examples/systemd-user/gpg-agent.service | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/doc/examples/systemd-user/dirmngr.service b/doc/examples/systemd-user/dirmngr.service index ded533b2f..2a7c76ea1 100644 --- a/doc/examples/systemd-user/dirmngr.service +++ b/doc/examples/systemd-user/dirmngr.service @@ -3,8 +3,6 @@ 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 diff --git a/doc/examples/systemd-user/gpg-agent.service b/doc/examples/systemd-user/gpg-agent.service index e88dc7f5f..a909f0b4e 100644 --- a/doc/examples/systemd-user/gpg-agent.service +++ b/doc/examples/systemd-user/gpg-agent.service @@ -3,8 +3,6 @@ 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 |