bladerunner/packer/scripts/setup-base.sh

22 lines
492 B
Bash
Raw Normal View History

2023-04-12 04:21:40 +00:00
#!/usr/bin/env bash
set -euxo pipefail
echo "[+] setting nameserver"
2023-04-12 05:15:34 +00:00
rm /etc/resolv.conf
2023-04-12 04:21:40 +00:00
echo 'nameserver 8.8.8.8' > /etc/resolv.conf
echo "[+] installing base packages"
2023-04-12 04:21:40 +00:00
apt-get -y update
apt-get -y install ansible apt-transport-https ca-certificates rng-tools
echo "[+] installing TPM tooling"
apt-get -y install libtpms-dev tpm2-tools tss2
echo "[+] removing unused packages"
apt-get -y remove fake-hwclock snapd
echo "[+] cleaning apt install"
apt-get -y clean
apt-get -y autoremove