From 2fae47c88862b007d700822f2297c8e8166074f8 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Tue, 4 Mar 2025 00:49:34 +0100 Subject: [PATCH] Minor fixes. --- testing/home/all/.bashrc | 1 - testing/home/all/.profile | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/home/all/.bashrc b/testing/home/all/.bashrc index 001a880..ec686eb 100644 --- a/testing/home/all/.bashrc +++ b/testing/home/all/.bashrc @@ -7,7 +7,6 @@ export EDITOR="${VISUAL}" # Some helpful aliases. alias curlpost='curl -H "Content-Type: application/json" -X POST' alias ls="ls --color=auto" -alias sshauth='eval $(ssh-agent) && ssh-add' # Colored prompt with username, hostname, date/time, directory. COLOR_NUMBER=7 # default to white diff --git a/testing/home/all/.profile b/testing/home/all/.profile index 5a8ac46..a2a8dca 100644 --- a/testing/home/all/.profile +++ b/testing/home/all/.profile @@ -7,6 +7,8 @@ # useful for providing environment variables to non-shell applications started # within a login session. +eval $(ssh-agent) && ssh-add + PATH_BASHRC="${HOME}/.bashrc" [ -n "${BASH_VERSION}" -a -f "${PATH_BASHRC}" ] && . "${PATH_BASHRC}" -- 2.30.2