summaryrefslogtreecommitdiffstats
path: root/patches/source/ca-certificates/doinst.sh
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-01-10 21:32:00 +0000
committer Eric Hameleers <alien@slackware.com>2023-01-11 13:30:25 +0100
commit4c8bd06faae5a8863bacd911b9cae04af4fa9869 (patch)
treeb1b643f9ff6d90aea70982485a4f5ec9e3ab8b98 /patches/source/ca-certificates/doinst.sh
parent585883b9b5ec51fd1a9d4729c3e2a20c5c928eae (diff)
downloadcurrent-4c8bd06faae5a8863bacd911b9cae04af4fa9869.tar.gz
current-4c8bd06faae5a8863bacd911b9cae04af4fa9869.tar.xz
Tue Jan 10 21:32:00 UTC 202320230110213200_15.0
patches/packages/ca-certificates-20221205-noarch-2_slack15.0.txz: Rebuilt. Make sure that if we're installing this package on another partition (such as when using installpkg with a --root parameter) that the updates are done on that partition. Thanks to fulalas.
Diffstat (limited to '')
-rw-r--r--patches/source/ca-certificates/doinst.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/patches/source/ca-certificates/doinst.sh b/patches/source/ca-certificates/doinst.sh
index 9e50c5598..cf1f984b5 100644
--- a/patches/source/ca-certificates/doinst.sh
+++ b/patches/source/ca-certificates/doinst.sh
@@ -17,7 +17,11 @@ config() {
# /usr/local/share/ca-certificates directory.
#config etc/ca-certificates.conf.new
-if [ -x /usr/sbin/update-ca-certificates ]; then
- /usr/sbin/update-ca-certificates --fresh 1> /dev/null 2> /dev/null
+# We don't want to run this from the installer because we've got a script
+# that runs it after all the packages are installed. But if we do run it,
+# we should chroot into the target partition to make sure the updates are
+# done in the correct location (and not on the calling partition):
+if [ ! -r /usr/lib/setup/setup ]; then
+ chroot . /usr/sbin/update-ca-certificates --fresh 1> /dev/null 2> /dev/null
fi