mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-02-24 00:29:53 -05:00
in vagrant/ansible, install brozzler from this checkout instead of from github master
This commit is contained in:
parent
3e128d2b27
commit
0b9ce94226
2
setup.py
2
setup.py
@ -21,7 +21,7 @@ import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
name='brozzler',
|
||||
version='1.1.dev44',
|
||||
version='1.1.dev45',
|
||||
description='Distributed web crawling with browsers',
|
||||
url='https://github.com/internetarchive/brozzler',
|
||||
author='Noah Levitt',
|
||||
|
2
vagrant/Vagrantfile
vendored
2
vagrant/Vagrantfile
vendored
@ -2,6 +2,8 @@ Vagrant.configure(2) do |config|
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
config.vm.hostname = "brozzler-easy"
|
||||
|
||||
config.vm.synced_folder "..", "/brozzler"
|
||||
|
||||
config.vm.provision "ansible" do |ansible|
|
||||
ansible.playbook = "ansible/playbook.yml"
|
||||
ansible.groups = {
|
||||
|
@ -46,7 +46,8 @@
|
||||
- restart vnc-websock
|
||||
- name: install brozzler in virtualenv
|
||||
become: true
|
||||
pip: name=git+https://github.com/internetarchive/brozzler.git#egg=brozzler
|
||||
pip: # name=git+https://github.com/internetarchive/brozzler.git#egg=brozzler
|
||||
name='-e /brozzler'
|
||||
virtualenv=/home/vagrant/brozzler-ve34
|
||||
virtualenv_python=python3.4
|
||||
extra_args='--no-input --upgrade --pre'
|
||||
|
@ -11,6 +11,8 @@
|
||||
become: true
|
||||
notify:
|
||||
- restart rethinkdb
|
||||
- name: ensure rethinkdb starts on reboot
|
||||
service: name=rethinkdb enabled=yes
|
||||
- name: ensure rethinkdb instance config file is installed
|
||||
template: src=templates/rethinkdb-brozzler-easy.conf.j2
|
||||
dest=/etc/rethinkdb/instances.d/rethinkdb-brozzler-easy.conf
|
||||
|
Loading…
x
Reference in New Issue
Block a user