File: Vagrantfile

package info (click to toggle)
fail2ban 1.1.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,076 kB
  • sloc: python: 23,095; sh: 527; xml: 352; perl: 344; makefile: 191
file content (30 lines) | stat: -rw-r--r-- 963 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Vagrant.configure("2") do |config|

    config.vm.define "secure" do |secure|
        secure.vm.box = "ubuntu/trusty64"
        secure.vm.hostname = "secure.dev.fail2ban.org"
        secure.vm.network "private_network", ip: "192.168.200.100"

#        secure.vm.synced_folder 'salt/roots', '/srv/salt'

#        secure.vm.provision :salt do |salt|
#            salt.minion_config = 'salt/minion'
#            salt.run_highstate = true
#            salt.verbose = true
#        end
    end

    config.vm.define "attacker" do |attacker|
        attacker.vm.box = "ubuntu/trusty64"
        attacker.vm.hostname = "attacker.dev.fail2ban.org"
        attacker.vm.network "private_network", ip: "192.168.200.150"

#        attacker.vm.synced_folder 'salt/roots', '/srv/salt'

#        attacker.vm.provision :salt do |salt|
#            salt.minion_config = 'salt/minion'
#            salt.run_highstate = true
#            salt.verbose = true
#        end
    end
end