From b05cbab8bc30cd9dcf4fbe2f0f8222a55c070a63 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 18 Jun 2020 09:55:19 +0300 Subject: ca-certificates: install update-certdata to /usr/bin --- core/ca-certificates/files/cert.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'core/ca-certificates/files/cert.sh') diff --git a/core/ca-certificates/files/cert.sh b/core/ca-certificates/files/cert.sh index 5ac6a223..a4d23dda 100755 --- a/core/ca-certificates/files/cert.sh +++ b/core/ca-certificates/files/cert.sh @@ -1,11 +1,15 @@ #!/bin/sh -e # -# update-certdata.sh +# update-certdata -[ -w "$KISS_ROOT/etc/certificates" ] || { +DEST="$KISS_ROOT/etc/certificates" + +[ -d "$DEST"] || mkdir -p "$DEST" + +[ -w "$DEST" ] || { printf '%s\n' "${0##*/}: root required to update CA certificates." >&2 exit 1 } -wget https://curl.haxx.se/ca/cacert.pem -O "$KISS_ROOT/etc/certificates/cert.pem" +wget https://curl.haxx.se/ca/cacert.pem -O "$DEST/cert.pem" printf '%s\n' "${0##*/}: updated cert.pem" -- cgit v1.2.3