Files
vms/distros/ubuntu/18.04/finalize.sh
T

19 lines
344 B
Bash
Raw Normal View History

2023-08-22 00:18:02 -05:00
#!/usr/bin/env bash
set -ex
apt remove cloud-init -y
apt update
apt upgrade -y
# Do some magic with init
sed -i -E -e 's,^(ACTIVE_CONSOLES="/dev/tty).*",\11,' /etc/default/console-setup
2023-12-06 08:21:32 -08:00
cat << EOF > /etc/ssh/sshd_config.d/00-vagrant_accept_pubkey.conf
2023-08-22 00:18:02 -05:00
UseDNS no
PubkeyAcceptedKeyTypes +ssh-rsa
EOF
# Clean up after ourselves
apt-get clean