After my initial installation and configuration of 13.2 I was being asked by way of dialog box to enter my SSH key pass. I think this was due to an entry in my .bash_profile
# Load SSH agent
SSH_ENV="$HOME/.ssh/environment"
function start_agent {
echo "Initialising new SSH agent..."
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
echo succeeded
chmod 600 "${SSH_ENV}"
. "${SSH_ENV}" > /dev/null
/usr/bin/ssh-add;
}
# Source SSH settings, if applicable
if -f "${SSH_ENV}" ]; then
. "${SSH_ENV}" > /dev/null
#ps ${SSH_AGENT_PID} doesn't work under cywgin
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
start_agent;
}
else
start_agent;
fi
During one boot up I selected the remember my password box and went on my way. Now, whenever I boot/re-boot the dialog box does not pop up and I’m forced to run ssh-add to get my key cached.
I’m not using Wallet.
How do I get KDE to pop up the dialog box again so I can cache the key on boot up? I’m guessing I need to force it to forget the password, but I don’t know if that is the case.