Files
intelmq-docker/.docker/intelmq-full-dev/update.sh
Jeremias Pretto 5fba132f9c hotfix
2021-03-23 15:19:03 -03:00

18 lines
478 B
Bash
Executable File

#!/bin/bash
echo "Installing requirements for bots in dev repository"
for file in $(find /opt/dev/mybots -name "*REQUIREMENTS.txt"); do pip3 install -r $file; done
echo "Merge your BOTS file with BOTS"
python3 /opt/dev/merge_BOTS.py
echo "Copying BOTS"
cp -a /opt/dev/mybots/bots/* /opt/intelmq/intelmq/bots/
cp /opt/intelmq/intelmq/bots/BOTS /opt/intelmq/etc/BOTS
echo "Installing new BOTS"
cd /opt/intelmq && pip3 install -e . --user && python3 setup.py install --user