10 lines
349 B
Ruby
10 lines
349 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.box = "bento/ubuntu-24.04"
|
|
config.vm.provision "shell" do |s|
|
|
ssh_pub_key = File.readlines("/home/rralambo/.ssh/id_rsa.pub").first.strip
|
|
s.inline = <<-SHELL
|
|
echo #{ssh_pub_key} >> /home/vagrant/.ssh/authorized_keys
|
|
echo #{ssh_pub_key} >> /root/.ssh/authorized_keys
|
|
SHELL
|
|
end
|
|
end |