15 lines
154 B
Bash
Executable file
15 lines
154 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /usr/lib/tuned/functions
|
|
|
|
start() {
|
|
enable_wifi_powersave
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
disable_wifi_powersave
|
|
return 0
|
|
}
|
|
|
|
process $@
|