Install airtime in vagrant env

Uses the old installer to get LibreTime installed quick and dirty on vagrant.

It uses the `install -fIap` command that does a local install and points the apache config
directly to the local working copy mounted in /vagrant.

While we don't have fancy autoloading for libretime like the docs do, this way
it's already easy to work against a local branch.

I'm not sure if the `-I` arg to the installer also covers the python parts of libretime.
This commit is contained in:
Lucas Bickel 2017-03-06 12:03:11 +01:00
parent bdcd21208d
commit 8ed1dce4b1
3 changed files with 11 additions and 2 deletions

2
Vagrantfile vendored
View file

@ -5,8 +5,10 @@ Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 80, host:8080
config.vm.network "forwarded_port", guest: 8888, host:8888
config.vm.provision "shell", inline: "cd /vagrant; ./install -fIap"
config.vm.provision "shell", path: "docs/scripts/install.sh"
config.vm.provision "shell", path: "docs/scripts/serve.sh"