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
	multiply_disk_readahead 4
9
 
10
	return 0
11
}
12
 
13
stop() {
97 - 14
	[ "$1" != "restart" ] && restore_cpu_governor
4 - 15
	restore_transparent_hugepages
16
	restore_disk_readahead
17
 
18
	return 0
19
}
20
 
21
process $@