mirror of
https://github.com/shokinn/.files.git
synced 2025-01-19 13:22:28 +00:00
21 lines
454 B
SYSTEMD
21 lines
454 B
SYSTEMD
|
#
|
||
|
# {{@@ env['dotdrop_warning'] @@}}
|
||
|
#
|
||
|
|
||
|
[Unit]
|
||
|
Description=SSH key agent
|
||
|
Wants=environment.target
|
||
|
Before=environment.target
|
||
|
IgnoreOnIsolate=true
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
|
||
|
ExecStart=/usr/bin/ssh-agent -a $SSH_AUTH_SOCK
|
||
|
ExecStartPost=/usr/bin/systemctl --user set-environment SSH_AUTH_SOCK=${SSH_AUTH_SOCK}
|
||
|
#ExecStop=/usr/bin/ssh-agent -k
|
||
|
ExecStopPost=/bin/rm ${SSH_AUTH_SOCK}
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|