aff1720972
refs #37 (cherry picked from commit 4469010a74ffefe2d92ffa335d7d1225d12fdece)
17 lines
326 B
Bash
Executable File
17 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# script/bootstrap: Resolve all dependencies that the application requires to run
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if command -v podman &> /dev/null; then
|
|
echo "podman is installed"
|
|
else
|
|
echo "update repositories and install podman"
|
|
sudo apt-get update &> /dev/null
|
|
sudo apt-get install podman
|
|
fi
|
|
|