* feat: add container-tools bling option * docs: container-tools description * fix: fetch all necessary files for containers-tools in base fetch script
11 lines
472 B
Bash
11 lines
472 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
install -c -m 0755 "$BLING_DIRECTORY/files/usr/bin/docker-compose" "/usr/bin/docker-compose"
|
|
install -c -m 0755 "$BLING_DIRECTORY/files/usr/bin/kind" "/usr/bin/kind"
|
|
install -c -m 0755 "$BLING_DIRECTORY/files/usr/bin/kubectx" "/usr/bin/kubectx"
|
|
install -c -m 0755 "$BLING_DIRECTORY/files/usr/bin/kubectx" "/usr/bin/kubens"
|
|
rpm-ostree install "$BLING_DIRECTORY/rpms/dive*.rpm"
|
|
|