mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 03:41:44 +00:00
219edcfa31
This loads the module, which should return the path of the CA bundle and verifies that the file exists. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
19 lines
290 B
Bash
19 lines
290 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
*-src)
|
|
;;
|
|
python3-certifi)
|
|
BUNDLE=$(python3 -m certifi) || {
|
|
echo "Failed to run the certfi module script. Exit status=$?." >&2
|
|
echo "Output='$BUNDLE'" >&2
|
|
exit 1
|
|
}
|
|
ls -l "$BUNDLE"
|
|
;;
|
|
*)
|
|
echo "Unexpected package '$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|