-
Notifications
You must be signed in to change notification settings - Fork 1
/
Vagrantfile
44 lines (37 loc) · 1.57 KB
/
Vagrantfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Copyright 2015 Telefonica Investigacion y Desarrollo, S.A.U
#
# This file is part of spassword.
#
# Spassword is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# Spassword is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
# General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Spassword. If not, see http://www.gnu.org/licenses/.
#
# For those usages not covered by this license please contact with
# iot-support at tid dot es
#
# Author: IoT Platform Team
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# For a complete reference, please see the online documentation at vagrantup.com.
# Cent OS 6.5 base image
config.vm.box = "chef/centos-6.5"
#config.vm.box = "centos64-x86_64"
#config.vm.box_url = "http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.5-x86_64-v20140504.box"
# This script will be run at startup
config.vm.provision :shell, path: "scripts/bootstrap/centos65.sh"
# Network configuration
config.vm.network "forwarded_port", host: 5101, guest: 5001 # Orchestrator port
end