mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2026-01-23 02:34:26 +00:00
* Shifting after_deploy messages and aws invalidation to proper locations * Add cert checkout to preinstall and setting those on s3 deploys only * Adding production docker file which runs netboot.xyz overrides * Only display sig menus if enabled * Fix var names for signing
8 lines
260 B
Bash
Executable file
8 lines
260 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 xvf certs.tar -C certs
|