source: npl/system/ca_certificates/get-certdata.txt.sh @ 26ffad7

Last change on this file since 26ffad7 was 105afb5, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

update curl, acme (certbot/letsencrypt) and root ca's

  • Property mode set to 100644
File size: 1.6 KB
Line 
1#!/bin/sh
2
3# Copyright 2018  Patrick J. Volkerding, Sebeka, Minnesota, USA
4# All rights reserved.
5#
6# Redistribution and use of this script, with or without modification, is
7# permitted provided that the following conditions are met:
8#
9# 1. Redistributions of this script must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11#
12#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
13#  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
14#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
15#  EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
16#  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
17#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
18#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
19#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
20#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
21#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
23CWD=$(pwd)
24
25# Make temporary directory:
26TMP_CERT_DIR=$(mktemp -d)
27
28cd $TMP_CERT_DIR
29lftpget https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt
30xzcat $CWD/certdata-*.txt.xz > old
31if diff old certdata.txt > /dev/null 2> /dev/null ; then
32  echo "No certdata.txt update available"
33else
34  xz -9 certdata.txt
35  rm -f $CWD/certdata-*.txt.xz
36  mv certdata.txt.xz $CWD/certdata-$(date "+%Y%m%d").txt.xz
37  echo "New certdata.txt found and installed in $CWD"
38fi
39rm -rf $TMP_CERT_DIR
Note: See TracBrowser for help on using the repository browser.