Fixes and docs
parent
86b013a0b7
commit
971c5ccce3
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# You need squeeze-backports if you run this on squeeze!
|
# You need squeeze-backports if you run this on squeeze!
|
||||||
apt-get install -y libzmq-dev libffi-dev build-essential
|
apt-get install -y libzmq-dev libffi-dev build-essential python python-dev
|
||||||
pip install pyzmq msgpack-python pynacl pyyaml psutil
|
pip install pyzmq msgpack-python pynacl pyyaml psutil
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
# Backports: echo "deb http://backports.debian.org/debian-backports squeeze-backports main" >> /etc/apt/sources.list && apt-get update && apt-get upgrade
|
# Backports: echo "deb http://backports.debian.org/debian-backports squeeze-backports main" >> /etc/apt/sources.list && apt-get update && apt-get upgrade
|
||||||
apt-get install -y python python-dev && wget cryto.net/~joepie91/pipfix.sh && chmod +x pipfix.sh && ./pipfix.sh
|
apt-get install -y python python-dev && wget cryto.net/~joepie91/pipfix.sh && chmod +x pipfix.sh && ./pipfix.sh
|
||||||
adduser --system --shell /bin/bash --group monitor && apt-get install -y git; su -c "cd ~; git clone https://github.com/joepie91/cryto-status.git" monitor && /home/monitor/cryto-status/deps.sh
|
adduser --system --shell /bin/bash --group monitor && apt-get install -y git; su -c "cd ~; git clone https://github.com/joepie91/cryto-status.git" monitor && /home/monitor/cryto-status/deps.sh
|
||||||
|
# Replace libzmq with a manually compiled version...: wget http://download.zeromq.org/zeromq-4.0.3.tar.gz; tar -xzvf zeromq-4.0.3.tar.gz; cd zeromq-4.0.3; ./configure; make; make install; ldconfig
|
||||||
|
Loading…
Reference in New Issue