File: Vagrantfile

package info (click to toggle)
python-vagrant 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 268 kB
  • sloc: python: 1,157; sh: 17; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  (1..2).each do |i|
    config.vm.define "multialpine0#{i}" do |webserver|
      webserver.vbguest.auto_update = false if Vagrant.has_plugin?("vagrant-vbguest")
      webserver.vm.box = "generic/alpine315"
      webserver.vm.hostname = "multialpine0#{i}"
    end
  end
end