| Andrew Geissler | eef8101 | 2017-08-15 14:04:51 -0500 | [diff] [blame^] | 1 | #!/bin/sh | 
|  | 2 | # set and unset occ active for all occ's in system | 
|  | 3 |  | 
|  | 4 | if [ "$1" == "disable" ]; then | 
|  | 5 | value='false' | 
|  | 6 | elif [ "$1" == "enable" ]; then | 
|  | 7 | value='true' | 
|  | 8 | else | 
|  | 9 | echo "Usage: occ-active.sh [argument]" | 
|  | 10 | echo "  enable  - set occ's to active state" | 
|  | 11 | echo "  disable - set occ's to inactive state" | 
|  | 12 | exit -1 | 
|  | 13 | fi | 
|  | 14 | busctl tree org.open_power.OCC.Control --list | grep occ | xargs -n1 -I{} \ | 
|  | 15 | busctl set-property org.open_power.OCC.Control {} \ | 
|  | 16 | org.open_power.OCC.Status OccActive b $value | 
|  | 17 | exit 0 |