diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2018-06-05 02:22:53 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2018-06-05 02:22:53 +0300 |
commit | 77242c62757c3ed1d1289196097380f168087071 (patch) | |
tree | fd8b8ad954365b60f438a622d3484772fdeaf779 /%HOME%/.profile | |
parent | add comments (diff) | |
download | linux-home-77242c62757c3ed1d1289196097380f168087071.tar.gz linux-home-77242c62757c3ed1d1289196097380f168087071.zip |
add ssh-agent systemd unit
Diffstat (limited to '%HOME%/.profile')
-rw-r--r-- | %HOME%/.profile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/%HOME%/.profile b/%HOME%/.profile index 94a3201..ad04911 100644 --- a/%HOME%/.profile +++ b/%HOME%/.profile @@ -81,4 +81,10 @@ spawn_ssh_agent() { && trap kill_ssh_agent EXIT } -spawn_ssh_agent +# This is a deprecated way to start ssh-agent; now it's managed by systemd (see +# .config/systemd/user/ssh-agent.service for details). +# Before starting ssh-agent like this, make sure to disable system ssh-agent's +# (like those started by Gnome or X11). +# Also, this file needs to be sourced by both your login shell and your display +# manager. +command -v systemctl > /dev/null 2>&1 || spawn_ssh_agent |