mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2025-08-11 00:06:56 +02:00
9 lines
259 B
Bash
Executable File
9 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# retrieve certs
|
|
git clone https://$GIT_USER:$GIT_AUTH@$GIT_URL certs
|
|
cp certs/certs.tar.enc .
|
|
openssl aes-256-cbc -K $encrypted_9ca5918f08ba_key -iv $encrypted_9ca5918f08ba_iv -in certs.tar.enc -out certs.tar -d
|
|
tar xf certs.tar -C certs
|