15 lines
339 B
Bash
Executable File
15 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
echo "==> Setting nameserver"
|
|
rm /etc/resolv.conf
|
|
echo 'nameserver 8.8.8.8' > /etc/resolv.conf
|
|
|
|
echo "==> installing base updates"
|
|
apt-get -y update
|
|
apt-get -y install ansible apt-transport-https ca-certificates rng-tools
|
|
apt-get -y remove fake-hwclock snapd
|
|
apt-get -y clean
|
|
apt-get -y autoremove
|