You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
323 B
14 lines
323 B
5 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# This file is executed at kde shutdown.
|
||
|
# Uncomment the following lines to kill the agents
|
||
|
# that were started at session startup.
|
||
|
|
||
|
#if [ -n "${GPG_AGENT_INFO}" ]; then
|
||
|
# kill $(echo ${GPG_AGENT_INFO} | cut -d':' -f 2) >/dev/null 2>&1
|
||
|
#fi
|
||
|
|
||
|
#if [ -n "${SSH_AGENT_PID}" ]; then
|
||
|
# eval "$(ssh-agent -s -k)"
|
||
|
#fi
|