10 lines
169 B
Bash
Executable file
10 lines
169 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cnt=$(ls -1 /certs 2>/dev/null|wc -l)
|
|
|
|
if [ $cnt -gt 0 ]; then
|
|
cp /certs/* /usr/local/share/ca-certificates
|
|
update-ca-certificates
|
|
fi
|
|
|
|
/start.py "$@"
|