diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 17:45:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 17:45:09 +0000 |
commit | da1a8f12d7a38f67f3f464aaaffa851f929ae4ea (patch) | |
tree | 677688f3aeab7f324f266d106770165708522c2c /Vagrantfile | |
parent | Initial commit. (diff) | |
download | python-netaddr-7e869254c654d0b5d5b8673ed3f143942f70296b.tar.xz python-netaddr-7e869254c654d0b5d5b8673ed3f143942f70296b.zip |
Adding upstream version 0.10.1.upstream/0.10.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | Vagrantfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..82a660f --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,10 @@ +Vagrant.configure(2) do |config| + config.vm.hostname = 'netaddr-' + `whoami`.chomp.downcase + config.vm.box = "ubuntu/trusty64" + config.ssh.forward_agent = true + + config.vm.provider "virtualbox" do |v| + v.memory = 1024 + v.cpus = 2 + end +end |