10 lines
275 B
Bash
Executable file
10 lines
275 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
cp /etc/ssl/cacert.pem.system /run/rocknix/cacert.pem
|
|
|
|
[ -f /storage/.config/cacert.pem ] && cat /storage/.config/cacert.pem >>/run/rocknix/cacert.pem
|
|
|
|
exit 0
|