17 lines
130 B
Bash
Executable file
17 lines
130 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. /usr/lib/tuned/functions
|
|
|
|
start() {
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
return 0
|
|
}
|
|
|
|
verify() {
|
|
return 0
|
|
}
|
|
|
|
process $@
|