mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-24 23:19:39 -05:00
Install CA certificates in initrd
This commit is contained in:
parent
0d7e0b44b8
commit
2171b9fb31
@ -17,6 +17,11 @@ install_and_enable_unit() {
|
|||||||
"${systemdsystemconfdir}/${target}.wants/${unit}"
|
"${systemdsystemconfdir}/${target}.wants/${unit}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
install_path() {
|
||||||
|
local dir="$1"; shift
|
||||||
|
mkdir -p "${initdir}/${dir}"
|
||||||
|
}
|
||||||
|
|
||||||
install() {
|
install() {
|
||||||
inst_multiple \
|
inst_multiple \
|
||||||
bash
|
bash
|
||||||
@ -60,4 +65,9 @@ install() {
|
|||||||
"/usr/sbin/aws-nvme-disk"
|
"/usr/sbin/aws-nvme-disk"
|
||||||
install_and_enable_unit "aws-nvme-disk.service" \
|
install_and_enable_unit "aws-nvme-disk.service" \
|
||||||
"basic.target"
|
"basic.target"
|
||||||
|
|
||||||
|
# TLS / CA store in initramfs
|
||||||
|
install_path /etc/pki/tls/certs/
|
||||||
|
inst_simple /etc/pki/tls/certs/ca-bundle.crt \
|
||||||
|
/etc/pki/tls/certs/ca-bundle.crt
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user