diff options
author | terminaldweller <devi@terminaldweller.com> | 2024-06-06 14:33:39 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2024-06-06 14:33:39 +0000 |
commit | 886906f6abe1c3b92bd38de49cdb5abda3c62115 (patch) | |
tree | caf6becf247e0d795d2a1daa6e9869f57eeef3b8 /disposable | |
parent | update (diff) | |
download | vagrantboxes-886906f6abe1c3b92bd38de49cdb5abda3c62115.tar.gz vagrantboxes-886906f6abe1c3b92bd38de49cdb5abda3c62115.zip |
updates
Diffstat (limited to 'disposable')
-rw-r--r-- | disposable/Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disposable/Vagrantfile b/disposable/Vagrantfile index 0ecd704..1a0df27 100644 --- a/disposable/Vagrantfile +++ b/disposable/Vagrantfile @@ -84,7 +84,7 @@ Vagrant.configure('2') do |config| config.vm.provision 'mullvad-test', type: 'shell', name: 'test', privileged: false, inline: <<-SHELL set -ex - curl https://am.i.mullvad.net/connected | grep -i "you\ are\ connected" + curl --connect-timeout 10 https://am.i.mullvad.net/connected | grep -i "you\ are\ connected" SHELL config.vm.provision 'kill-switch', communicator_required: false, type: 'shell', name: 'kill-switch', privileged: true, inline: <<-SHELL |