Marty Oehme
7bee413323
Detect X autostart a bit better with a separate service. The service relies on a shell script which searches for a socket which X creates on startup and only finishes when it finds the socket succesfully. This makes services which need X to start successfully a bit more robust, and while it can still break if X takes too long, it should be more stable now. Finally, services can restart more quickly when ended since they don't require the 2+ `RestartSec` option to be present anymore to successfully start.
13 lines
281 B
SYSTEMD
13 lines
281 B
SYSTEMD
[Unit]
|
|
Description=GnuPG cryptographic agent and passphrase cache (restricted)
|
|
Documentation=man:gpg-agent(1)
|
|
|
|
[Socket]
|
|
ListenStream=%t/gnupg/S.gpg-agent.extra
|
|
FileDescriptorName=extra
|
|
Service=gpg-agent.service
|
|
SocketMode=0600
|
|
DirectoryMode=0700
|
|
|
|
[Install]
|
|
WantedBy=sockets.target
|