mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2026-01-08 13:11:46 +00:00
17 lines
349 B
Bash
17 lines
349 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
get_yaml_array INSTALL '.install[]' "$1"
|
|
|
|
export BLING_DIRECTORY="/tmp/bling"
|
|
|
|
cd "/tmp/modules/bling/installers"
|
|
|
|
find "$PWD" -type f -exec chmod +x {} \;
|
|
|
|
for ITEM in "${INSTALL[@]}"; do
|
|
echo "Pulling from bling: $ITEM"
|
|
eval "$PWD/$ITEM.sh"
|
|
done |