mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
14 lines
299 B
Bash
14 lines
299 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# This file is executed at kde shutdown.
|
||
|
# Uncomment the following lines to kill the agents
|
||
|
# that were started at session startup.
|
||
|
|
||
|
if [ "${GPG_AGENT_INFO}" ]; then
|
||
|
kill $(echo ${GPG_AGENT_INFO} | cut -d':' -f 2) >/dev/null 2>&1
|
||
|
fi
|
||
|
#
|
||
|
if [ "${SSH_AGENT_PID}" ]; then
|
||
|
ssh-agent -k
|
||
|
fi
|