diff options
author | Rob Austein <sra@hactrn.net> | 2010-12-31 19:04:03 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-12-31 19:04:03 +0000 |
commit | 6c764b15f07f87271ff01ca2bc55b0bcd318c74d (patch) | |
tree | ee184d450475fd38a14a0df732a52cd7a4151b6d | |
parent | 2bf7d1a353419e3481c99065f81df9f859293c6f (diff) |
"Indirect Trust Anchor" -> "Trust Anchor Locator"
svn path=/rcynic/make-ita.sh; revision=3595
-rw-r--r-- | rcynic/make-tal.sh (renamed from rcynic/make-ita.sh) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rcynic/make-ita.sh b/rcynic/make-tal.sh index 2ea89b06..59d00832 100644 --- a/rcynic/make-ita.sh +++ b/rcynic/make-tal.sh @@ -18,7 +18,7 @@ # Generate an indirect trust anchor given the rsync URI for a # self-signed RFC 3779 certificate. # -# Usage: make-ita.sh uri [local_copy_of_certificate] +# Usage: make-tal.sh uri [local_copy_of_certificate] # # The optional second parameter is the name of a local copy of the # certificate to be checked against the copy retrieved from the URI; @@ -26,7 +26,7 @@ case "$1" in rsync://*) :;; *) echo 1>&2 "\"$1\" is not a rsync URI"; exit 1;; esac -tmpfile="make-ita.tmp.$$" +tmpfile="make-tal.tmp.$$" trap "rm -f $tmpfile" 0 1 2 15 rsync "$1" "$tmpfile" || exit |