mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
15 lines
290 B
Bash
Executable File
15 lines
290 B
Bash
Executable File
#!/bin/sh -e
|
|
#
|
|
# update-certdata.sh
|
|
|
|
[ -w /etc/ssl ] || {
|
|
printf '%s\n' "${0##*/}: root required to update cert." >&2
|
|
exit 1
|
|
}
|
|
|
|
cd /etc/ssl && {
|
|
curl https://curl.haxx.se/ca/cacert.pem -o cacert.pem
|
|
mv -f cacert.pem cert.pem
|
|
printf '%s\n' "${0##*/}: updated cert.pem"
|
|
}
|