2015-12-26 20:52:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "Install the dependencies of the vigil script..."
|
|
|
|
|
sudo apt-get --yes install python3-minimal python3-pygments python3-pyinotify \
|
2016-01-29 18:51:35 +00:00
|
|
|
python3-urwid python3-psutil python3-docopt
|
2015-12-26 20:52:39 +00:00
|
|
|
echo
|
|
|
|
|
echo "Install all the tools vigil may need..."
|
|
|
|
|
./install-tools
|
2016-10-25 22:48:20 +02:00
|
|
|
sudo apt-get --yes install python-pip python3-pip
|
|
|
|
|
pip install bandit==1.1.0
|
|
|
|
|
pip3 install bandit==1.1.0
|