# HG changeset patch # User Jana Fabrikova # Date 1396358001 -7200 # Node ID 3dc54730c5a72d5a163ff99821f3e58e39825542 # Parent 3d06e2d323cbdba92c16e98b1d9b6578100a0eb3 modifying auxiliary script for stopping all thermostat agents diff -r 3d06e2d323cb -r 3dc54730c5a7 ChangeLog --- a/ChangeLog Tue Apr 01 15:09:08 2014 +0200 +++ b/ChangeLog Tue Apr 01 15:13:21 2014 +0200 @@ -1,3 +1,9 @@ +2014-04-01 Jana Fabrikova + + * scripts/stop_all_therm_agents.sh: + modification of the auxiliary script for stopping all thermostat agents by + adding one line that stops also all the AgentProxy processes + 2014-04-01 Jana Fabrikova * test.properties: diff -r 3d06e2d323cb -r 3dc54730c5a7 scripts/stop_all_therm_agents.sh --- a/scripts/stop_all_therm_agents.sh Tue Apr 01 15:09:08 2014 +0200 +++ b/scripts/stop_all_therm_agents.sh Tue Apr 01 15:13:21 2014 +0200 @@ -1,2 +1,3 @@ kill -9 $(jps | grep Thermostat | cut -d' ' -f1) +kill -9 $(jps | grep AgentProxy | cut -d' ' -f1)