Changes between Version 5 and Version 6 of Software/eTutorialSupport
- Timestamp:
- Jun 26, 2016, 7:58:58 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Software/eTutorialSupport
v5 v6 107 107 108 108 {{{ 109 list=$( omf stat -t system:topo:all | grep "Node:" | awk -F" " '{print $2}' | cut -f1 -d$'.')109 list=$(qstat -Q | tail -n+3 | awk -F" " '{print $1}') 110 110 111 111 for l in $list 112 112 do 113 q mgr -c "set queue $l enabled = False"113 qdisable "$l" 114 114 done 115 115 }}}