]> git.donarmstrong.com Git - ca-certificates.git/blob - sbin/update-ca-certificates
baa1bb92e7a28868df80564d1114ee221baf4720
[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 -print | while read symlink
45   do
46      case $(readlink $symlink) in
47      $CERTSDIR*) rm -f $symlink;;
48      esac
49   done
50   find . -type l -print | while read symlink
51   do
52      test -f $symlink || rm -f $symlink
53   done
54   echo "done."
55 fi
56 echo -n "Updating certificates in /etc/ssl/certs...."
57
58 bundletmp=`mktemp "${CERTBUNDLE}.tmp.XXXXXX"`
59 sed -ne 's/^!//p' $CERTSCONF | while read crt
60 do
61  if test "$crt" = ""; then continue; fi
62  pem=$(basename "$crt" .crt).pem
63  if test -e "$pem"; then rm -f "$pem"; fi
64 done
65
66 sed -e '/^#/d' -e '/^!/d' $CERTSCONF | while read crt
67 do
68  if test "$crt" = ""; then continue; fi
69  if ! test -f "$CERTSDIR/$crt"; then continue; fi
70  pem=$(basename "$crt" .crt).pem
71  ln -sf "$CERTSDIR/$crt" "$pem"
72  cat "$CERTSDIR/$crt" >> "$bundletmp"
73 done
74 chmod 0644 "$bundletmp"
75 mv -f "$bundletmp" "$CERTBUNDLE"
76
77 if [ "$verbose" = 0 ]; then
78   c_rehash . > /dev/null 2>&1
79 else
80   c_rehash .
81 fi
82 echo "done."
83