Files
vms/scripts/vagrant.sh
T

13 lines
384 B
Bash
Raw Normal View History

2023-08-22 00:18:02 -05:00
#!/usr/bin/env bash
set -ex
# Configure vagrant user's SSH key
2023-12-06 08:21:32 -08:00
# shellcheck disable=SC2174
2023-08-22 00:18:02 -05:00
mkdir -m 0700 -p ~vagrant/.ssh
curl -L -o ~vagrant/.ssh/authorized_keys "https://raw.githubusercontent.com/hashicorp/vagrant/master/keys/vagrant.pub"
chmod 600 ~vagrant/.ssh/authorized_keys
chown -R vagrant:vagrant ~vagrant/
# Set the build time
date -Iseconds > /etc/vagrant_box_build_time