diff --git a/prov.sh b/prov.sh new file mode 100644 index 0000000..3aee4ac --- /dev/null +++ b/prov.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +export DEBIAN_FRONTEND=noninteractive + +function main() { + RELEASE="$(lsb_release -cs)" + + prov-$RELEASE +} + +function prov-focal() { + +PKGS=" + bridge-utils + byobu + git + make + net-tools + nmap + traceroute + vim + vlan + wireguard-tools + zsh +" + + + apt update && \ + apt upgrade -y && \ + apt install -y $PKGS && \ + apt autoremove -y +} + +main \ No newline at end of file