diff options
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/local_testing/Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible/local_testing/Vagrantfile b/ansible/local_testing/Vagrantfile index 3532c0c..30e6a9e 100644 --- a/ansible/local_testing/Vagrantfile +++ b/ansible/local_testing/Vagrantfile @@ -12,7 +12,7 @@ Vagrant.configure("2") do |config| config.vm.define "control", primary: true do |control| control.vm.hostname = "control" control.vm.network "private_network", ip: "192.168.56.1", virtualbox__intnet: true - control.vm.synced_folder "../..", "/home/vagrant/infra", type: "rsync", rsync__exclude: ['.git-crypt', '.ruff_cache', 'dns', 'docs', 'kubernetes', 'venv', '.gitattributes', '.git', '.gitmodules', '.gitignore', '.pre-commit-config.yaml', 'LICENSE', 'README.md', 'server_bootstrap.sh'] + control.vm.synced_folder "../..", "/home/vagrant/infra", type: "rsync", rsync__exclude: ['.git-crypt', '.ruff_cache', 'dns', 'docs', 'kubernetes', 'venv', '.gitattributes', '.git', '.gitmodules', '.gitignore', '.pre-commit-config.yaml', 'LICENSE', 'README.md', 'server_bootstrap.sh', 'ansible/.ansible'] control.vm.provision "Install poetry", type: "shell", inline: <<-SHELL apt-get install -y python3-poetry |