From e07a369a16838ee5e7626bd09184a94d0e4b0aa2 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 3 Oct 2018 21:14:40 -0400 Subject: start bootstrap --- debian-bootstrap.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 debian-bootstrap.sh (limited to 'debian-bootstrap.sh') diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh new file mode 100644 index 0000000..d48d1ea --- /dev/null +++ b/debian-bootstrap.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +apt update +apt upgrade -y +apt full-upgrade -y + +while read pkg; do + echo $pkg + apt install $pkg +done < packages.txt + -- cgit 1.4.1