]> git.donarmstrong.com Git - ca-certificates.git/blob - sbin/update-ca-certificates
Imported Debian version 20050518
[ca-certificates.git] / sbin / update-ca-certificates
1 #!/bin/sh -e
2 #
3 # update-ca-certificates
4 #
5 # Copyright (c) 2003 Fumitoshi UKAI <ukai@debian.or.jp>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 #
21
22 verbose=0
23 fresh=0
24 while [ $# -gt 0 ];
25 do
26   case $1 in
27   --verbose|-v)
28         verbose=1;;
29   --fresh|-f)
30         fresh=1;;
31   --help|-h|*)
32         echo "$0: [--verbose] [--fresh]"
33         exit;;
34   esac
35   shift
36 done
37
38 CERTSCONF=/etc/ca-certificates.conf
39 CERTSDIR=/usr/share/ca-certificates
40 CERTBUNDLE=ca-certificates.crt
41 cd /etc/ssl/certs
42 if [ "$fresh" = 1 ]; then
43   echo -n "Clearing symlinks in /etc/ssl/certs..."
44   find . -type l -print0 | xargs -0 rm -f
45   echo "done."
46 fi
47 echo -n "Updating certificates in /etc/ssl/certs...."
48
49 bundletmp=`mktemp "${CERTBUNDLE}.tmp.XXXXXX"`
50 sed -ne 's/^!//p' $CERTSCONF | while read crt
51 do
52  if test "$crt" = ""; then continue; fi
53  pem=$(basename "$crt" .crt).pem
54  if test -e "$pem"; then rm -f "$pem"; fi
55 done
56
57 sed -e '/^#/d' -e '/^!/d' $CERTSCONF | while read crt
58 do
59  if test "$crt" = ""; then continue; fi
60  if ! test -f "$CERTSDIR/$crt"; then continue; fi
61  pem=$(basename "$crt" .crt).pem
62  ln -sf "$CERTSDIR/$crt" "$pem"
63  cat "$CERTSDIR/$crt" >> "$bundletmp"
64 done
65 chmod 0644 "$bundletmp"
66 mv -f "$bundletmp" "$CERTBUNDLE"
67
68 if [ "$verbose" = 0 ]; then
69   c_rehash . > /dev/null 2>&1
70 else
71   c_rehash .
72 fi
73 echo "done."
74