Skip to content
Snippets Groups Projects
Commit 510448b7 authored by Robert Ricci's avatar Robert Ricci
Browse files

Finish up the instructions for the last revision.

parent 81ca0334
No related branches found
No related tags found
No related merge requests found
......@@ -2224,14 +2224,21 @@ last_net_act,last_cpu_act,last_ext_act);
Then, determine the name of the experimental net stack like so:
select distinct stack_id from nodes as n left join switch_stacks as \
s on n.node_id=s.node_id where n.role='ctrlswitch';
s on n.node_id=s.node_id where n.role='testswitch';
You can then set the name of the experimental stack like this
(substituting in the name of the stack you just found):
update switch_stacks set stack_id='Control' where \
update switch_stacks set stack_id='Experiment' where \
stack_id='<stackid>';
update switch_stack_types set stack_id='Control' where \
update switch_stack_types set stack_id='Experiment' where \
stack_id='<stackid>';
Then, do the same with the control net:
select distinct stack_id from nodes as n left join switch_stacks as \
s on n.node_id=s.node_id where n.role='ctrlswitch';
update switch_stacks set stack_id='Control' where \
stack_id='<stackid>';
update switch_stack_types set stack_id='Control' where \
stack_id='<stackid>';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment