Switch LibreTime port to 9080 in vagrant

Also expose icecast and make the airtime port generally configurable from the installer.

To aid in debugging and support the -v (verbose) argument was added to the call.
This commit is contained in:
Lucas Bickel 2017-03-07 12:55:06 +01:00
parent 354f449b82
commit bd2f96acf2
5 changed files with 42 additions and 10 deletions

8
Vagrantfile vendored
View file

@ -5,7 +5,11 @@ Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 80, host:8080
# libretime web interface
config.vm.network "forwarded_port", guest: 9080, host:9080
# icecast2
config.vm.network "forwarded_port", guest: 8000, host:8000
# mkdics documentation
config.vm.network "forwarded_port", guest: 8888, host:8888
config.vm.provider "virtualbox" do |v|
@ -13,7 +17,7 @@ Vagrant.configure("2") do |config|
v.memory = 1024
end
config.vm.provision "shell", inline: "cd /vagrant; ./install -fIap"
config.vm.provision "shell", inline: "cd /vagrant; ./install -fIapv --web-port=9080"
config.vm.provision "shell", path: "docs/scripts/install.sh"
config.vm.provision "shell", path: "docs/scripts/serve.sh"