Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/nbproject
/nbproject
.vagrant/
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ Spawn os environments ,
12.04
32bit -> $ vagrant up zpanel_12.04ubuntu32
64bit -> $ vagrant up zpanel_12.04ubuntu64

12.10
32bit -> $ vagrant up ubuntu12_10-32

14.04
32bit -> $ vagrant up zpanel_14.04ubuntu32
64bit -> $ vagrant up zpanel_14.04ubuntu64
#### centos
6.4
32bit -> $ vagrant up zpanel_6.4centos32
Expand Down
26 changes: 25 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,31 @@ Vagrant.configure("2") do |config|
# custom virtual machine setup
vb.hostname = "zp32ubuntu"
end
end # end config
end # end define

##### Ubuntu 14.04 vagrant

# ubuntu 14.04 32bit # IP : 192.168.33.15
config.vm.define 'zpanel_14.04ubuntu32' do |config|
config.vm.box = "ubuntu14_04-32"
config.vm.network :private_network, ip: "192.168.33.15"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box"
config.vm.provider :virtualbox do |vb|
# custom virtual machine setup
vb.hostname = "zp32ubuntu"
end
end # end define
# ubuntu 14.04 64bit # IP : 192.168.33.16
config.vm.define 'zpanel_14.04ubuntu64' do |config|
config.vm.box = "ubuntu14_04-64"
config.vm.network :private_network, ip: "192.168.33.16"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.provider :virtualbox do |vb|
# custom virtual machine setup
vb.hostname = "zp64ubuntu"
end
end # end define
### end


end # Toplevel end
Expand Down