Add OpenSUSE 13.1-box
This commit is contained in:
parent
20344e2552
commit
ffefae5261
2 changed files with 12 additions and 0 deletions
|
@ -68,6 +68,8 @@
|
||||||
folders via NFS. Currently not working
|
folders via NFS. Currently not working
|
||||||
- opensuse12 :: OpenSUSE 12.3 machine. Currently not completely
|
- opensuse12 :: OpenSUSE 12.3 machine. Currently not completely
|
||||||
compiling Foam
|
compiling Foam
|
||||||
|
- opensuse13 :: OpenSUSE 13.1 machine. The current LTS-version of
|
||||||
|
OpenSUSE
|
||||||
Some machines (read: the BSD-boxes) need the =VirtualBox Extension
|
Some machines (read: the BSD-boxes) need the =VirtualBox Extension
|
||||||
Pack= installed (because they have USB 2.0)
|
Pack= installed (because they have USB 2.0)
|
||||||
* Scripts in the machine
|
* Scripts in the machine
|
||||||
|
|
10
vagrantSandbox/Vagrantfile
vendored
10
vagrantSandbox/Vagrantfile
vendored
|
@ -133,4 +133,14 @@ Vagrant.configure("2") do |config|
|
||||||
opensuse12.vm.hostname="opensuse12."+config.vm.hostname
|
opensuse12.vm.hostname="opensuse12."+config.vm.hostname
|
||||||
end
|
end
|
||||||
|
|
||||||
|
config.vm.define :opensuse13 do |opensuse13|
|
||||||
|
opensuse13.vm.box = "berendt/opensuse-13.1-x86_64"
|
||||||
|
opensuse13.vm.box_check_update = true
|
||||||
|
opensuse13.vm.provision :shell do |s|
|
||||||
|
s.args = "opensuse13"
|
||||||
|
s.path = "initOpenSUSEScript.sh"
|
||||||
|
end
|
||||||
|
opensuse13.vm.hostname="opensuse13."+config.vm.hostname
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue