Added all files

This commit is contained in:
2025-05-30 09:53:45 +02:00
commit e1e343667a
885 changed files with 22353 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Vagrant.configure(2) do |config|
config.vm.box = "bento/ubuntu-18.04"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.hostname = "client.vagrant.local"
config.vm.provision :shell, :path => "install.sh"
config.vm.provider "virtualbox" do |v|
v.memory = 512
v.cpus = 1
v.name = "webserver"
end
end

View File

@@ -0,0 +1,3 @@
set -eux
apt-get update
apt-get install -y --no-install-recommends ansible