diff options
author | Alex Auvolat <alex@adnab.me> | 2023-04-18 16:10:07 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-10-18 12:03:11 +0200 |
commit | bc11701999ececdb4571119082945cbe86f098aa (patch) | |
tree | 46b79664947521dd848f686668538e7a3f73b6e4 /script/jepsen.garage/Vagrantfile | |
parent | ca4cc7e44f6143ec24be626c683ed5b14ff40295 (diff) | |
download | garage-bc11701999ececdb4571119082945cbe86f098aa.tar.gz garage-bc11701999ececdb4571119082945cbe86f098aa.zip |
jepsen: s3 gets and puts
Diffstat (limited to 'script/jepsen.garage/Vagrantfile')
-rw-r--r-- | script/jepsen.garage/Vagrantfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/script/jepsen.garage/Vagrantfile b/script/jepsen.garage/Vagrantfile index da6a277f..c40c600d 100644 --- a/script/jepsen.garage/Vagrantfile +++ b/script/jepsen.garage/Vagrantfile @@ -8,7 +8,7 @@ def vm(config, hostname, ip) end Vagrant.configure("2") do |config| - config.vm.box = "generic/alpine38" + config.vm.box = "generic/debian10" config.vm.provider "virtualbox" do |vb| vb.gui = false @@ -17,8 +17,8 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: <<-SHELL echo "root:root" | chpasswd - apk update - apk add wget + mkdir -p /root/.ssh + echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJpaBZdYxHqMxhv2RExAOa7nkKhPBOHupMP3mYaZ73w9 lx@lindy" >> /root/.ssh/authorized_keys SHELL config.vm.define "n1" do |config| vm(config, "n1", "192.168.56.21") end |