7 lines
131 B
Bash
Executable File
7 lines
131 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Exit on error, undefined vars, and pipe failures
|
|
set -euo pipefail
|
|
|
|
dnf update
|
|
dnf -y install podman buildah |