From 60fe4798b7bc49793262d697c61c7b8512efef93 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sat, 3 Feb 2024 13:20:53 -0500 Subject: [PATCH] build(deps): ensure that provisioning installs podman --- apt.txt | 1 + provision.sh | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 apt.txt create mode 100644 provision.sh diff --git a/apt.txt b/apt.txt new file mode 100644 index 0000000..5247d59 --- /dev/null +++ b/apt.txt @@ -0,0 +1 @@ +podman diff --git a/provision.sh b/provision.sh new file mode 100644 index 0000000..8e17c5c --- /dev/null +++ b/provision.sh @@ -0,0 +1,7 @@ +#/bin/bash + +# Ensure that dependencies are up to date. +sudo apt update && sudo apt upgrade -y --autoremove + +# Ensure that critical dependencies are installed. +sudo apt install $(cat apt.txt) -y