Commit ed0f85e2d971e3a4fed0fed9597f0ae3be246898

Authored by Etienne Pallier
1 parent ec3825e9
Exists in dev

bugfix KILL_PYROS no

Showing 2 changed files with 2 additions and 1 deletions   Show diff stats
docker/KILL_PYROS_DOCKER_RUN
... ... @@ -39,7 +39,7 @@ echo "1) Try to STOP pyros cleanly... :"
39 39 echo "docker exec pyros python3 pyros.py stop"
40 40 echo
41 41 # ./PYROS stop
42   -docker exec pyros python3 pyros.py stop
  42 +[ $DOIT == 1 ] && docker exec pyros python3 pyros.py stop
43 43  
44 44  
45 45 echo
... ...
docker/PYROS_DOCKER_RUN
... ... @@ -45,6 +45,7 @@ echo "- PLC simulator LOG file is ../../LOG_PYROS_plc_simulator.log"
45 45 # - Save log in file
46 46 # NEW-START
47 47 docker exec pyros python3 pyros.py new-start -o tnc -fg > ../../LOG_PYROS_agents.log 2>&1 &
  48 +echo "- PLC simulator LOG file is ../../LOG_PYROS_agents.log"
48 49 # START
49 50 ####docker exec pyros python3 pyros.py -d start agentM -o tnc >> ../../LOG_PYROS_agent_monitoring.log 2>&1 &
50 51 #docker exec pyros python3 pyros.py -d start agentM -o "guitalens" >> ../../LOG_PYROS_agent_monitoring.log 2>&1 &
... ...