about summary refs log tree commit diff
path: root/debian-bootstrap.sh
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2018-10-03 21:14:40 -0400
committerBen Harris <ben@tilde.team>2018-10-03 21:14:40 -0400
commite07a369a16838ee5e7626bd09184a94d0e4b0aa2 (patch)
treeced8c2fe53d47b5aaccc307e45ae77b0f3b8c42e /debian-bootstrap.sh
parent9e887a787529ffe36ea8d02f3370634f13360792 (diff)
start bootstrap
Diffstat (limited to 'debian-bootstrap.sh')
-rw-r--r--debian-bootstrap.sh11
1 files changed, 11 insertions, 0 deletions
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
+