7 lines
265 B
Bash
Executable File
7 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
echo "127.0.0.1 weval-consulting.com" >> /etc/hosts
|
|
cd /opt/weval-l99
|
|
timeout 180 python3 growth-test-v2.py > /tmp/growth-test-output.log 2>&1
|
|
sed -i '/127.0.0.1 weval-consulting.com/d' /etc/hosts
|
|
echo "TEST DONE $(date)" >> /tmp/growth-test-output.log
|