1 ca-certificates is a package from Debian, but some host distros such as Fedora
2 have a leaner run-parts provided by cron which doesn't support --verbose or the
3 -- separator between arguments and paths.
5 This solves errors such as
7 | Running hooks in [...]/rootfs/etc/ca-certificates/update.d...
8 | [...]/usr/sbin/update-ca-certificates: line 194: Not: command not found
10 Upstream-Status: Inappropriate
11 Signed-off-by: Ross Burton <ross.burton@intel.com>
13 sbin/update-ca-certificates | 4 +---
14 1 file changed, 1 insertion(+), 3 deletions(-)
16 diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates
17 index fed9c25..29ecc69 100755
18 --- a/sbin/update-ca-certificates
19 +++ b/sbin/update-ca-certificates
20 @@ -186,9 +186,7 @@ echo "$ADDED_CNT added, $REMOVED_CNT removed; done."
22 HOOKSDIR=$SYSROOT/etc/ca-certificates/update.d
23 echo -n "Running hooks in $HOOKSDIR...."
25 -[ "$verbose" = 0 ] || VERBOSE_ARG=--verbose
26 -eval run-parts $VERBOSE_ARG --test -- $HOOKSDIR | while read hook
27 +eval run-parts --test $HOOKSDIR | while read hook
30 cat $REMOVED ) | $hook || echo E: $hook exited with code $?.