aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/%HOME%/.config/systemd/user/ssh-agent.service
blob: 0b2e9bcf47d61813e576b2e6a46e0c4c307ae846 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                         


                                                                        



                                                                             










                                                   
# Enable: systemd --user enable ssh-agent
# Start:  systemd --user start ssh-agent

# Make sure SSH_AUTH_SOCK is set to "$XDG_RUNTIME_DIR/ssh-agent.socket".
# You can do this by adding it to ~/.profile (the usual way) or
# ~/.pam_environment:
#   * "SSH_AUTH_SOCK DEFAULT=${XDG_RUNTIME_DIR}/ssh-agent.socket", or, if it
#     doesn't work,
#   * "SSH_AUTH_SOCK DEFAULT=/run/user/1000/ssh-agent.socket" (replace "1000"
#     with your UID).

[Unit]
Description=OpenSSH agent

[Service]
Type=simple
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
ExecStart=/usr/bin/ssh-agent -D -a "$SSH_AUTH_SOCK"

[Install]
WantedBy=default.target