mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 22:50:25 -06:00
6 lines
141 B
Bash
Executable File
6 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
if [[ -n $1 ]]; then
|
|
# $1 is new governor
|
|
echo $1 | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor &>/dev/null
|
|
fi
|