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 Index: git/sbin/update-ca-certificates
17 ===================================================================
18 --- git.orig/sbin/update-ca-certificates
19 +++ git/sbin/update-ca-certificates
20 @@ -191,9 +191,7 @@ if [ -d "$HOOKSDIR" ]
23 echo "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 $?."