summarylogtreecommitdiffstats
path: root/throttlectl
diff options
context:
space:
mode:
Diffstat (limited to 'throttlectl')
-rwxr-xr-xthrottlectl4
1 files changed, 2 insertions, 2 deletions
diff --git a/throttlectl b/throttlectl
index 420373c882fd..f94cb049014a 100755
--- a/throttlectl
+++ b/throttlectl
@@ -278,11 +278,11 @@ while (( "$#" )); do
case "${1}" in
cut|powersave|start)
[[ -f /etc/throttle.d/powersave ]] && . /etc/throttle.d/powersave || config_help
- printf "0" > /etc/throttle.d/systemstate
+ printf "0" > /etc/throttle.d/systemstate &
;;
full|performance|stop)
[[ -f /etc/throttle.d/performance ]] && . /etc/throttle.d/performance || config_help
- printf "1" > /etc/throttle.d/systemstate
+ printf "1" > /etc/throttle.d/systemstate &
;;
esac