File: keychain.xsession

package info (click to toggle)
keychain 2.6.8-2
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 180 kB
  • ctags: 35
  • sloc: sh: 1,187; makefile: 38
file content (16 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Sourced by Xsession(5)

if test -d "$HOME/.keychain"
then
  h="`uname -n 2>/dev/null || echo unknown`"
  keychain --ignore-missing --inherit local-once --noask --nocolor --quick \
    --quiet --host "$h"
  if test -f "$HOME/.keychain/$h-sh"
  then
    . "$HOME/.keychain/$h-sh"
  fi
  if test -f "$HOME/.keychain/$h-sh-gpg"
  then
    . "$HOME/.keychain/$h-sh-gpg"
  fi
fi