mirror of https://github.com/MISP/misp-packer
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
mv /tmp/issue /etc/issue
|
|
mv /tmp/crontab /etc/cron.d/misp
|
|
|
|
# package
|
|
echo "--- autoremove for apt ---"
|
|
apt autoremove -qqy
|
|
|
|
echo "--- Cleaning packages"
|
|
apt clean -qqy
|
|
|
|
# Pass postfix configuration
|
|
echo "postfix postfix/mailname string localhost.localdomain" | debconf-set-selections
|
|
echo "postfix postfix/main_mailer_type string 'No configuration'" | debconf-set-selections
|
|
apt install mailutils -qqy
|
|
|
|
echo "--- Testing Instance ---"
|
|
cd /var/www/MISP/PyMISP
|
|
/var/www/MISP/venv/bin/python tests/testlive_comprehensive.py 2> /tmp/tests-output.txt
|
|
|
|
if [ "$?" != "0" ]; then
|
|
echo "Damage, terrible terrible damage!!!!" >> /tmp/tests-output.txt
|
|
# TODO: Move the smtp server and e-mail address to a config file
|
|
##set smtp=smtp://149.13.33.5 ; cat /tmp/tests-output.txt |mail -s "tests/testlive_comprehensive.py failed on autogen-VM" steve.clement@circl.lu
|
|
fi
|
|
|
|
rm -rf tests/viper-test-files
|
|
|
|
rm /etc/apt/apt.conf.d/99progressbar
|
|
|
|
# End Cleaning
|
|
echo "VM cleaned and rebooting for automagic reas0ns."
|
|
reboot
|
|
|