Subversion Repositories configs

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
#!/bin/sh
2
 
3
. /etc/tune-profiles/functions
4
 
5
start() {
6
	set_cpu_governor performance
7
	set_transparent_hugepages always
8
 
9
	return 0
10
}
11
 
12
stop() {
97 - 13
	[ "$1" != "restart" ] && restore_cpu_governor
4 - 14
	restore_transparent_hugepages
15
 
16
	return 0
17
}
18
 
19
process $@