systemd: Start ssh-agent with systemd user
See https://wiki.archlinux.org/title/SSH_keys#Start_ssh-agent_with_systemd_user
This commit is contained in:
parent
3600310085
commit
c2038b5324
2 changed files with 13 additions and 0 deletions
|
@ -0,0 +1 @@
|
||||||
|
/home/core/.config/systemd/user/ssh-agent.service
|
12
systemd/.config/systemd/user/ssh-agent.service
Normal file
12
systemd/.config/systemd/user/ssh-agent.service
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[Unit]
|
||||||
|
Description=SSH key agent
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
|
||||||
|
# DISPLAY required for ssh-askpass to work
|
||||||
|
Environment=DISPLAY=:0
|
||||||
|
ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
Loading…
Reference in a new issue